Defines a work axis in an Inventor assembly. The work axis can be defined by two points or by defining the origin and a vector .
The work axis can be defined using arbitrary position data, and then constrained using assembly constraints.
IvWorkAxisModifier
Name | Type | Description |
---|---|---|
axis | vector | Defines the direction of a work axis. |
point1 | point | Defines the start point of a work axis. |
point2 | point | Defines the end point of a work axis. |
Name | Type | Description |
---|---|---|
grounded? | boolean | True will set the work axis grounded. |
Name | string | Name of the work axis that will be displayed in the Inventor browser tree. |
origin | point | Defines the start position of the work axis when axis is defined. |
visible? | boolean | True will make the work axis visible. |
Name | Type | Description |
---|---|---|
modelSelf | list | List of CAD relevant information about the current part . |
Creating a work axis feature by using two points .
Child Name : | workAxis_1 | |
Child Design : | IvWorkAxis | |
Name | Type | Supplied |
grounded? | boolean | False |
point1 | point | Point(1, 1, 1) |
point2 | point | Point(5, 5, 5) |
visible? | boolean | True |
Creating a work axis feature using origin and vector .
Child Name : | workAxis_2 | |
Child Design : | IvWorkAxis | |
Name | Type | Supplied |
origin | point | Point(1, 1, 1) |
axis | vector | Vector(1, 0, 0) |
grounded? | boolean | False |
visible? | boolean | True |