We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90face0 commit 3178efcCopy full SHA for 3178efc
src/framework/components/joint/constants.js
@@ -0,0 +1,24 @@
1
+/**
2
+ * @private
3
+ * @constant
4
+ * @type {string}
5
+ * @name MOTION_FREE
6
+ * @description Specified degree of freedom has free movement.
7
+ */
8
+export const MOTION_FREE = 'free';
9
10
11
12
13
+ * @name MOTION_LIMITED
14
+ * @description Specified degree of freedom has limited movement.
15
16
+export const MOTION_LIMITED = 'limited';
17
18
19
20
21
+ * @name MOTION_LOCKED
22
+ * @description Specified degree of freedom is locked and allows no movement.
23
24
+export const MOTION_LOCKED = 'locked';
0 commit comments