 | IObjectsAddArcOfCircleFromCenterRadiusAngles Method |
Adds an arc of a circle with specified radius and center defined on the active plane
of the active coordinate system. The arc is limited by two angles: startAngle and endAngle.
The angle is defined in right-handed coordinate system.
The radius must be greater than precision.
The arc name is "ArcOfCircle".
Namespace:
EMInvent.InventSim.COMServer
Assembly:
InventSim (in InventSim.exe) Version: 5.1.12.6+develop
SyntaxISimObject AddArcOfCircleFromCenterRadiusAngles(
string name,
string center,
string radius,
string startAngle,
string endAngle
)
Function AddArcOfCircleFromCenterRadiusAngles (
name As String,
center As String,
radius As String,
startAngle As String,
endAngle As String
) As ISimObject
Dim instance As IObjects
Dim name As String
Dim center As String
Dim radius As String
Dim startAngle As String
Dim endAngle As String
Dim returnValue As ISimObject
returnValue = instance.AddArcOfCircleFromCenterRadiusAngles(name,
center, radius, startAngle, endAngle)
Parameters
- name
- Type: SystemString
Name of the arc. - center
- Type: SystemString
Center of the circle. - radius
- Type: SystemString
Radius of the circle. - startAngle
- Type: SystemString
Start angle of the arc. - endAngle
- Type: SystemString
End angle of the arc.
Return Value
Type:
ISimObjectReference to the arc.
See Also