 | IObjectsMakeChamfer Method |
Creates chamfers of specified edges. In order to define chamfers list of edges must be specified
based on which chamfers will be created. Chamfers are parameterized by two distances from the edge
to two newly created edges. First distance is measured on a specified face and the second distance
is measured on the other face.
Namespace:
EMInvent.InventSim.COMServer
Assembly:
InventSim (in InventSim.exe) Version: 5.1.12.6+develop
SyntaxISimObject MakeChamfer(
ISimObject solid,
ISimObject[] edges,
ISimObject[] faces,
string distance1,
string distance2
)
Function MakeChamfer (
solid As ISimObject,
edges As ISimObject(),
faces As ISimObject(),
distance1 As String,
distance2 As String
) As ISimObject
Dim instance As IObjects
Dim solid As ISimObject
Dim edges As ISimObject()
Dim faces As ISimObject()
Dim distance1 As String
Dim distance2 As String
Dim returnValue As ISimObject
returnValue = instance.MakeChamfer(solid,
edges, faces, distance1, distance2)
Parameters
- solid
- Type: EMInvent.InventSim.COMServerISimObject
Solid which edges are to be chamfered. - edges
- Type: EMInvent.InventSim.COMServerISimObject
Edges to be chamfered. - faces
- Type: EMInvent.InventSim.COMServerISimObject
Faces on which distance1 is measured. Each edge must have corresponding face specified.
The number of faces must be the same as the number of edges. - distance1
- Type: SystemString
Distance from the edge on the specified face. - distance2
- Type: SystemString
Distance from the edge on the second face.
Return Value
Type:
ISimObject
See Also