MoveFeatureInput.defineAsPointToPosition Method
Parent Object:
MoveFeatureInputDefined in namespace "adsk::fusion" and the header file is <Fusion/Features/MoveFeatureInput.h>
Description
This method defines a move feature described by a point and an offset. The distances define offsets in the X, Y, and Z directions in either design or component space. To not move the input entities at all the offset distances should be set to the current location of the point in either design or component space. Adding or subtracting to those values will then move the entities that distance. It's best to experiment with the command interactively to understand the behavior.
Syntax
"moveFeatureInput_var" is a variable referencing a MoveFeatureInput object.returnValue = moveFeatureInput_var.defineAsPointToPosition(point, xDistance, yDistance, zDistance, isDesignSpace) |
"moveFeatureInput_var" is a variable referencing a MoveFeatureInput object.
#include <Fusion/Features/MoveFeatureInput.h>
returnValue = moveFeatureInput_var->defineAsPointToPosition(point, xDistance, yDistance, zDistance, isDesignSpace);
|
Return Value
| boolean |
Returns true if defining the type of move is successful. |
Parameters
| point |
Base |
An entity that defines a point in space. This can be a sketch point, a construction point, or a BRepVertex. |
| xDistance |
ValueInput |
A ValueInput object that defines the offset in the X direction. If the ValueInput is created using a real value, the distance is in centimeters. If it's defined using a string, the default document units will be used. |
| yDistance |
ValueInput |
A ValueInput object that defines the offset in the Y direction. If the ValueInput is created using a real value, the distance is in centimeters. If it's defined using a string, the default document units will be used. |
| zDistance |
ValueInput |
A ValueInput object that defines the offset in the Z direction. If the ValueInput is created using a real value, the distance is in centimeters. If it's defined using a string, the default document units will be used. |
| isDesignSpace |
boolean |
Defines if the translation is defined with respect to the design or component space. Design space is the same as the root component space. |
Version
Introduced in version January 2023