Revolution Cut
Revolution Cut feature revolves the selected objects around the selected axis and cuts the result from other objects.
To perform a Revolution Cut in the active part:
select in the Main Menu Features - > Revolution Cut item or
click
Revolution Cut button in the toolbar
The following property panel will be opened:
Start sketch
There are three variants of the property panel for Revolution Cut depending on the chosen option:
By Angles revolves objects by specifying angles.
By Bounding Planes revolves objects by specifying bounding planes and angles.
Through All revolves objects by 360 degrees.
By angles
Revolution Cut: definition by angles
Base objects - contains a list of objects selected in the Object Browser or in the Viewer, which will be revolved.
Axis - axis of revolution.
To angle - end angle of revolution.
From angle - start angle of revolution.
Cut from - contains a list of objects which will but cut with the result of revolution.
TUI Commands:
- model.addRevolutionCut(part, objectsToRevolve, axis, angle, objectToCut)
- Parameters:
part – The current part object.
list – A list of objects for revolution.
object – An axis.
real – An angle.
list – A list of objects to cut from.
- Returns:
Created object.
- model.addRevolutionCut(part, objectsToRevolve, axis, toAngle, fromAngle, objectToCut)
- Parameters:
part – The current part object.
list – A list of objects for revolution.
object – An axis.
real – To angle.
real – From angle.
list – A list of objects to cut from.
- Returns:
Created object.
Result
The Result of the operation will be a revolved shape:
Revolution Cut created
See Also a sample TUI Script of Create Revolution Cut by angles operation.
By bounding planes
Revolution Cut: definition by bounding planes
Base objects - contains a list of objects selected in the Object Browser or in the Viewer, which will be revolved.
Axis - axis of revolution.
To plane - a planar face can be selected to bound revolution from one side.
To offset - offset for revolution or for bounding plane, if selected.
From plane - a planar face can be selected to bound revolution from the other side.
From offset - offset for revolution or for bounding plane, if selected.
Cut from - contains a list of objects from which the result of revolution will be cut.
TUI Command:
- model.addRevolutionCut(part, objectsToRevolve, axis, toObject, toOffset, fromObject, fromOffset, objectToCut)
- Parameters:
part – The current part object.
list – A list of objects for revolution.
object – An axis.
object – To object.
real – To offset.
object – From object.
real – From offset.
list – A list of objects to cut from.
- Returns:
Created object.
Result
The Result of the operation will be a revolved shape:
Revolution Cut created
See Also a sample TUI Script of Create Revolution Cut by bounding planes operation.
Through all
Revolution Cut: revolving through all the space
Base objects - contains a list of objects selected in the Object Browser or in the Viewer, which will be revolved.
Axis - axis of revolution.
Cut from - contains a list of objects which will but cut with the result of revolution.
TUI Commands:
- model.addRevolutionCut(part, objectsToRevolve, axis, objectToCut)
- Parameters:
part – The current part object.
list – A list of objects for revolution.
object – An axis.
list – A list of objects to cut from.
- Returns:
Created object.
Result
The Result of the operation will be a revolved shape:
Revolution Cut created
See Also a sample TUI Script of Create Revolution Cut by 360 degrees operation.