 | IObjectsMakeChamfer2 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 MakeChamfer2(
ISimObject solid,
ISimObjectCollection edges,
ISimObjectCollection faces,
string distance1,
string distance2
)
Function MakeChamfer2 (
solid As ISimObject,
edges As ISimObjectCollection,
faces As ISimObjectCollection,
distance1 As String,
distance2 As String
) As ISimObject
Dim instance As IObjects
Dim solid As ISimObject
Dim edges As ISimObjectCollection
Dim faces As ISimObjectCollection
Dim distance1 As String
Dim distance2 As String
Dim returnValue As ISimObject
returnValue = instance.MakeChamfer2(solid,
edges, faces, distance1, distance2)
Parameters
- solid
- Type: EMInvent.InventSim.COMServerISimObject
Solid which edges are to be chamfered. - edges
- Type: EMInvent.InventSim.COMServerISimObjectCollection
Edges to be chamfered. - faces
- Type: EMInvent.InventSim.COMServerISimObjectCollection
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