 | IObjectsAddHelix Method |
Adds a helix centered at p0. The helix axis
is perpendicular to the active plane of the active coordinates system. The helix
face name is "Helix".
Both radii must have non-negative values.
Namespace:
EMInvent.InventSim.COMServer
Assembly:
InventSim (in InventSim.exe) Version: 5.1.12.6+develop
SyntaxISimObject AddHelix(
string name,
string p0,
string radius1,
string radius2,
string turns,
string angle,
string profileRadius,
bool ccw
)
Function AddHelix (
name As String,
p0 As String,
radius1 As String,
radius2 As String,
turns As String,
angle As String,
profileRadius As String,
ccw As Boolean
) As ISimObject
Dim instance As IObjects
Dim name As String
Dim p0 As String
Dim radius1 As String
Dim radius2 As String
Dim turns As String
Dim angle As String
Dim profileRadius As String
Dim ccw As Boolean
Dim returnValue As ISimObject
returnValue = instance.AddHelix(name,
p0, radius1, radius2, turns, angle,
profileRadius, ccw)
Parameters
- name
- Type: SystemString
Name of the helix. - p0
- Type: SystemString
Starting point. - radius1
- Type: SystemString
Bottom radius. - radius2
- Type: SystemString
Top radius. - turns
- Type: SystemString
Number of turns. - angle
- Type: SystemString
Pitch angle. - profileRadius
- Type: SystemString
Profile radius. - ccw
- Type: SystemBoolean
True if counterclockwise, false otherwise.
Return Value
Type:
ISimObjectReference to the helix
See Also