Skip to content

Commit 7f0fe30

Browse files
committed
feat: sync TypeFeature flags with Python API
1 parent 69fa1e7 commit 7f0fe30

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

robodk_interface/irobodk.h

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,13 +240,30 @@ class IRoboDK {
240240
FEATURE_CURVE = 2,
241241

242242
/// Point selection
243-
FEATURE_POINT = 3
243+
FEATURE_POINT = 3,
244+
245+
/// Object mesh (using ID)
246+
FEATURE_OBJECT_MESH = 7,
247+
248+
/// Surface preview
249+
FEATURE_SURFACE_PREVIEW = 8,
250+
251+
/// Mesh (under the mouse cursor)
252+
FEATURE_MESH = 9,
253+
254+
/// Object mesh (under the mouse cursor)
255+
FEATURE_HOVER_OBJECT_MESH = 10,
256+
257+
/// Object feature (under the mouse cursor)
258+
FEATURE_HOVER_OBJECT = 11
244259
};
245260

246261
/// Spray gun simulation:
247262
enum TypeSpray {
248-
/// Activate the spray simulation
263+
/// Disable spray simulation
249264
SPRAY_OFF = 0,
265+
266+
/// Enable spray simulation
250267
SPRAY_ON = 1
251268
};
252269

0 commit comments

Comments
 (0)