Uses of Interface
com.solibri.geometry.primitive3d.Plane
-
Packages that use Plane Package Description com.solibri.geometry.primitive3d com.solibri.smc.api.visualization -
-
Uses of Plane in com.solibri.geometry.primitive3d
Subinterfaces of Plane in com.solibri.geometry.primitive3d Modifier and Type Interface Description interface
MPlane
Interface for handling mutable planes in 3d.Methods in com.solibri.geometry.primitive3d that return Plane Modifier and Type Method Description static Plane
Plane. create(Vector3d pointOnPlane, Vector3d planeNormal)
Returns the plane defined by the given points.Methods in com.solibri.geometry.primitive3d with parameters of type Plane Modifier and Type Method Description double
Plane. dihedralAngle(Plane plane)
Calculates the dihedral angle between this plane and the given plane.Optional<MVector3d>
Line3d. getIntersectionPoint(Plane plane)
Returns the point of intersection between this line and the given plane.Optional<MLine3d>
Plane. intersect(Plane plane)
Calculates the intersection between this plane and the given plane and returns the resulting line.Optional<MVector3d>
Segment3d. intersect(Plane plane)
Returns the point of intersection between this Segment and the given plane.boolean
Segment3d. intersects(Plane plane)
Returns true if this segment intersects the given plane. -
Uses of Plane in com.solibri.smc.api.visualization
Methods in com.solibri.smc.api.visualization that return types with arguments of type Plane Modifier and Type Method Description Collection<Plane>
Visualization. getSections()
Returns the section planes of this visualization.Methods in com.solibri.smc.api.visualization with parameters of type Plane Modifier and Type Method Description void
Visualization. addSection(Plane sectionPlane)
Adds a section plane to this visualization.Method parameters in com.solibri.smc.api.visualization with type arguments of type Plane Modifier and Type Method Description void
Visualization. addSections(Collection<Plane> sectionPlanes)
Adds the given section planes to this visualization.
-