Interface RectangleHollowProfile
-
- All Superinterfaces:
ParametricProfile,Profile,RectangleProfile
public interface RectangleHollowProfile extends RectangleProfile
Represents the Rectangle hollow shaped profile of a component. Corresponds to IfcRectangleHollowProfileDef of IFC.- Since:
- 9.10.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<Double>getInnerFilletRadius()Returns an optional of the radius of the circular arcs, by which all four corners of the inner contour of rectangle are equally rounded.Optional<Double>getOuterFilletRadius()Returns an optional of the radius of the circular arcs, by which all four corners of the outer contour of rectangle are equally rounded.DoublegetWallThickness()Returns the thickness of the wall.-
Methods inherited from interface com.solibri.smc.api.model.profile.ParametricProfile
getParametricProfileType
-
Methods inherited from interface com.solibri.smc.api.model.profile.RectangleProfile
getXDim, getYDim
-
-
-
-
Method Detail
-
getWallThickness
Double getWallThickness()
Returns the thickness of the wall.- Returns:
- the thickness of the wall
- Since:
- 9.10.3
-
getInnerFilletRadius
Optional<Double> getInnerFilletRadius()
Returns an optional of the radius of the circular arcs, by which all four corners of the inner contour of rectangle are equally rounded.- Returns:
- an optional of the radius of the circular arcs, by which all four corners of the inner contour of rectangle are equally rounded
- Since:
- 9.10.3
-
getOuterFilletRadius
Optional<Double> getOuterFilletRadius()
Returns an optional of the radius of the circular arcs, by which all four corners of the outer contour of rectangle are equally rounded.- Returns:
- an optional of the radius of the circular arcs, by which all four corners of the outer contour of rectangle are equally rounded
- Since:
- 9.10.3
-
-