vcFrameFeature
vcFrameFeature is a type of feature used to reference a point in the 3D world.
Inherits: vcFeature
Properties
Name | Type | Access | Description |
FramePositionMatrix | vcMatrix | R | Gets the position matrix of frame. |
OriginalFramePositionMatrix | vcMatrix | R | Gets the original position matrix of frame. |
Examples
Example. Frame position matrix relative to its containing node's coordinate system
from vcScript import * app = getApplication() comp = app.findComponent("Feeder Template") node = comp.findNode("Feeder Template") feature = node.findFeature("Frame" ) pos = feature.NodePositionMatrix print pos.N.X, pos.N.Y, pos.N.Z |