 | IObjectsAddArcOfCircleFromPointsOnArc Method |
Adds an arc of a circle between two points startPoint and endPoint
and through arcPoint located between the first two.
The distance between any of the three points 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 AddArcOfCircleFromPointsOnArc(
string name,
string startPoint,
string endPoint,
string arcPoint
)
Function AddArcOfCircleFromPointsOnArc (
name As String,
startPoint As String,
endPoint As String,
arcPoint As String
) As ISimObject
Dim instance As IObjects
Dim name As String
Dim startPoint As String
Dim endPoint As String
Dim arcPoint As String
Dim returnValue As ISimObject
returnValue = instance.AddArcOfCircleFromPointsOnArc(name,
startPoint, endPoint, arcPoint)
Parameters
- name
- Type: SystemString
Name of the arc. - startPoint
- Type: SystemString
Start point of the arc. - endPoint
- Type: SystemString
End point of the arc. - arcPoint
- Type: SystemString
Point on the arc between startPoint and endPoint.
Return Value
Type:
ISimObjectReference to the arc.
See Also