Revize 705930ed
Přidáno uživatelem Jakub Hejman před téměř 4 roky(ů)
deltarobot/curvedataserver.cpp | ||
---|---|---|
283 | 283 |
} |
284 | 284 |
} |
285 | 285 |
|
286 |
void CurveDataServer::sendNewCurve(QList<QVector3D> points) |
|
286 |
void CurveDataServer::sendNewCurve(QList<QVector3D> &points)
|
|
287 | 287 |
{ |
288 | 288 |
int size = points.size(); |
289 | 289 |
|
... | ... | |
323 | 323 |
} |
324 | 324 |
} |
325 | 325 |
|
326 |
void CurveDataServer::sendNewCurve(QList<QVector4D> points) |
|
326 |
void CurveDataServer::sendNewCurve(QList<QVector4D> &points)
|
|
327 | 327 |
{ |
328 | 328 |
QList<QVector3D> curve3d; |
329 | 329 |
int itemCount = points.size(); |
deltarobot/curvedataserver.h | ||
---|---|---|
36 | 36 |
void sendActuatorPosition(float x, float y, float z); |
37 | 37 |
void sendActualDirection(float x, float y, float z); |
38 | 38 |
void sendTargetDirection(float x, float y, float z); |
39 |
void sendNewCurve(QList<QVector4D> points); |
|
40 |
void sendNewCurve(QList<QVector3D> points); |
|
39 |
void sendNewCurve(QList<QVector4D> &points);
|
|
40 |
void sendNewCurve(QList<QVector3D> &points);
|
|
41 | 41 |
|
42 | 42 |
public slots: |
43 | 43 |
void onNewConnection(); |
Také k dispozici: Unified diff
pass points as reference