 | IObjectsAddArcOfCircleFromCenterStartEnd Method |
Adds an arc of a circle with specified center and radius calculated as a distance from center
to startPoint/endPoint. The circle is defined on the active plane of the active coordinate system.
The resulting arc is limited by two points: startPoint and endPoint.
The arc name is "ArcOfCircle".
Namespace:
EMInvent.InventSim.COMServer
Assembly:
InventSim (in InventSim.exe) Version: 5.1.12.6+develop
SyntaxISimObject AddArcOfCircleFromCenterStartEnd(
string name,
string center,
string startPoint,
string endPoint
)
Function AddArcOfCircleFromCenterStartEnd (
name As String,
center As String,
startPoint As String,
endPoint As String
) As ISimObject
Dim instance As IObjects
Dim name As String
Dim center As String
Dim startPoint As String
Dim endPoint As String
Dim returnValue As ISimObject
returnValue = instance.AddArcOfCircleFromCenterStartEnd(name,
center, startPoint, endPoint)
Parameters
- name
- Type: SystemString
Name of the arc. - center
- Type: SystemString
Center of the circle. - startPoint
- Type: SystemString
Start point of the arc. - endPoint
- Type: SystemString
End point of the arc.
Return Value
Type:
ISimObjectReference to the arc.
See Also