This class is used to switch between active selecting volumes depending on selection type chosen by the user. The sample of correct selection volume initialization procedure:
More...
|
| | SelectMgr_SelectingVolumeManager () |
| | Creates instances of all available selecting volume types.
|
| |
| | ~SelectMgr_SelectingVolumeManager () override=default |
| |
| void | InitPointSelectingVolume (const gp_Pnt2d &thePoint) |
| | Creates, initializes and activates rectangular selecting frustum for point selection.
|
| |
| void | InitBoxSelectingVolume (const gp_Pnt2d &theMinPt, const gp_Pnt2d &theMaxPt) |
| | Creates, initializes and activates rectangular selecting frustum for box selection.
|
| |
| void | InitPolylineSelectingVolume (const NCollection_Array1< gp_Pnt2d > &thePoints) |
| | Creates, initializes and activates set of triangular selecting frustums for polyline selection.
|
| |
| void | InitAxisSelectingVolume (const gp_Ax1 &theAxis) |
| | Creates and activates axis selector for point selection.
|
| |
| void | InitSelectingVolume (const occ::handle< SelectMgr_BaseIntersector > &theVolume) |
| | Sets as active the custom selecting volume.
|
| |
| void | BuildSelectingVolume () |
| | Builds previously initialized selecting volume.
|
| |
| const occ::handle< SelectMgr_BaseIntersector > & | ActiveVolume () const |
| | Returns active selecting volume that was built during last run of OCCT selection mechanism.
|
| |
| int | GetActiveSelectionType () const override |
| | Return selection type.
|
| |
| virtual SelectMgr_SelectingVolumeManager | ScaleAndTransform (const int theScaleFactor, const gp_GTrsf &theTrsf, const occ::handle< SelectMgr_FrustumBuilder > &theBuilder) const |
| | IMPORTANT: Scaling makes sense only for frustum built on a single point! Note that this method does not perform any checks on type of the frustum.
|
| |
| virtual SelectMgr_SelectingVolumeManager | CopyWithBuilder (const occ::handle< SelectMgr_FrustumBuilder > &theBuilder) const |
| | Returns a copy of the selecting volume manager and its active frustum re-constructed using the passed builder. Builder is an argument that represents corresponding settings for re-constructing transformed frustum from scratch.
|
| |
| const occ::handle< Graphic3d_Camera > & | Camera () const |
| | Returns current camera definition.
|
| |
| void | SetCamera (const occ::handle< Graphic3d_Camera > &theCamera) |
| | Updates camera projection and orientation matrices in all selecting volumes Note: this method should be called after selection volume building else exception will be thrown.
|
| |
| void | SetViewport (const double theX, const double theY, const double theWidth, const double theHeight) |
| | Updates viewport in all selecting volumes Note: this method should be called after selection volume building else exception will be thrown.
|
| |
| void | SetPixelTolerance (const int theTolerance) |
| | Updates pixel tolerance in all selecting volumes Note: this method should be called after selection volume building else exception will be thrown.
|
| |
| void | WindowSize (int &theWidth, int &theHeight) const |
| | Returns window size.
|
| |
| void | SetWindowSize (const int theWidth, const int theHeight) |
| | Updates window size in all selecting volumes Note: this method should be called after selection volume building else exception will be thrown.
|
| |
| bool | OverlapsBox (const NCollection_Vec3< double > &theBoxMin, const NCollection_Vec3< double > &theBoxMax, SelectBasics_PickResult &thePickResult) const override |
| | SAT intersection test between defined volume and given axis-aligned box.
|
| |
| bool | OverlapsBox (const NCollection_Vec3< double > &theBoxMin, const NCollection_Vec3< double > &theBoxMax, bool *theInside=nullptr) const override |
| | Returns true if selecting volume is overlapped by axis-aligned bounding box with minimum corner at point theMinPt and maximum at point theMaxPt.
|
| |
| bool | OverlapsPoint (const gp_Pnt &thePnt, SelectBasics_PickResult &thePickResult) const override |
| | Intersection test between defined volume and given point.
|
| |
| bool | OverlapsPoint (const gp_Pnt &thePnt) const override |
| | Intersection test between defined volume and given point.
|
| |
| bool | OverlapsPolygon (const NCollection_Array1< gp_Pnt > &theArrayOfPts, int theSensType, SelectBasics_PickResult &thePickResult) const override |
| | SAT intersection test between defined volume and given ordered set of points, representing line segments. The test may be considered of interior part or boundary line defined by segments depending on given sensitivity type.
|
| |
| bool | OverlapsSegment (const gp_Pnt &thePnt1, const gp_Pnt &thePnt2, SelectBasics_PickResult &thePickResult) const override |
| | Checks if line segment overlaps selecting frustum.
|
| |
| bool | OverlapsTriangle (const gp_Pnt &thePnt1, const gp_Pnt &thePnt2, const gp_Pnt &thePnt3, int theSensType, SelectBasics_PickResult &thePickResult) const override |
| | SAT intersection test between defined volume and given triangle. The test may be considered of interior part or boundary line defined by triangle vertices depending on given sensitivity type.
|
| |
| bool | OverlapsSphere (const gp_Pnt &theCenter, const double theRadius, SelectBasics_PickResult &thePickResult) const override |
| | Intersection test between defined volume and given sphere.
|
| |
| bool | OverlapsSphere (const gp_Pnt &theCenter, const double theRadius, bool *theInside=nullptr) const override |
| | Intersection test between defined volume and given sphere.
|
| |
| bool | OverlapsCylinder (const double theBottomRad, const double theTopRad, const double theHeight, const gp_Trsf &theTrsf, const bool theIsHollow, SelectBasics_PickResult &thePickResult) const override |
| | Returns true if selecting volume is overlapped by cylinder (or cone) with radiuses theBottomRad and theTopRad, height theHeight and transformation to apply theTrsf.
|
| |
| bool | OverlapsCylinder (const double theBottomRad, const double theTopRad, const double theHeight, const gp_Trsf &theTrsf, const bool theIsHollow, bool *theInside=nullptr) const override |
| | Returns true if selecting volume is overlapped by cylinder (or cone) with radiuses theBottomRad and theTopRad, height theHeight and transformation to apply theTrsf.
|
| |
| bool | OverlapsCircle (const double theBottomRad, const gp_Trsf &theTrsf, const bool theIsFilled, SelectBasics_PickResult &thePickResult) const override |
| | Returns true if selecting volume is overlapped by circle with radius theRadius, boolean theIsFilled and transformation to apply theTrsf. The position and orientation of the circle are specified via theTrsf transformation for gp::XOY() with center in gp::Origin().
|
| |
| bool | OverlapsCircle (const double theBottomRad, const gp_Trsf &theTrsf, const bool theIsFilled, bool *theInside=nullptr) const override |
| | Returns true if selecting volume is overlapped by circle with radius theRadius, boolean theIsFilled and transformation to apply theTrsf. The position and orientation of the circle are specified via theTrsf transformation for gp::XOY() with center in gp::Origin().
|
| |
| double | DistToGeometryCenter (const gp_Pnt &theCOG) const override |
| | Measures distance between 3d projection of user-picked screen point and given point theCOG.
|
| |
| gp_Pnt | DetectedPoint (const double theDepth) const override |
| | Calculates the point on a view ray that was detected during the run of selection algo by given depth. Throws exception if active selection type is not Point.
|
| |
| virtual void | AllowOverlapDetection (const bool theIsToAllow) |
| | If theIsToAllow is false, only fully included sensitives will be detected, otherwise the algorithm will mark both included and overlapped entities as matched.
|
| |
| bool | IsOverlapAllowed () const override |
| | Returns flag indicating if partial overlapping of entities is allowed or should be rejected.
|
| |
| const occ::handle< Graphic3d_SequenceOfHClipPlane > & | ViewClipping () const |
| | Return view clipping planes.
|
| |
| const occ::handle< Graphic3d_SequenceOfHClipPlane > & | ObjectClipping () const |
| | Return object clipping planes.
|
| |
| void | SetViewClipping (const occ::handle< Graphic3d_SequenceOfHClipPlane > &theViewPlanes, const occ::handle< Graphic3d_SequenceOfHClipPlane > &theObjPlanes, const SelectMgr_SelectingVolumeManager *theWorldSelMgr) |
| | Valid for point selection only! Computes depth range for clipping planes.
|
| |
| void | SetViewClipping (const SelectMgr_SelectingVolumeManager &theOther) |
| | Copy clipping planes from another volume manager.
|
| |
| const SelectMgr_ViewClipRange & | ViewClipRanges () const |
| | Return clipping range.
|
| |
| void | SetViewClipRanges (const SelectMgr_ViewClipRange &theRange) |
| | Set clipping range.
|
| |
| const gp_Pnt * | GetVertices () const |
| | A set of helper functions that return rectangular selecting frustum data.
|
| |
| gp_Pnt | GetNearPickedPnt () const override |
| | Valid only for point and rectangular selection. Returns projection of 2d mouse picked point or projection of center of 2d rectangle (for point and rectangular selection correspondingly) onto near view frustum plane.
|
| |
| gp_Pnt | GetFarPickedPnt () const override |
| | Valid only for point and rectangular selection. Returns projection of 2d mouse picked point or projection of center of 2d rectangle (for point and rectangular selection correspondingly) onto far view frustum plane.
|
| |
| gp_Dir | GetViewRayDirection () const override |
| | Valid only for point and rectangular selection. Returns view ray direction.
|
| |
| bool | IsScalableActiveVolume () const override |
| | Checks if it is possible to scale current active selecting volume.
|
| |
| gp_Pnt2d | GetMousePosition () const override |
| | Returns mouse coordinates for Point selection mode.
|
| |
| void | GetPlanes (NCollection_DynamicArray< NCollection_Vec4< double > > &thePlaneEquations) const override |
| | Stores plane equation coefficients (in the following form: Ax + By + Cz + D = 0) to the given vector.
|
| |
| void | DumpJson (Standard_OStream &theOStream, int theDepth=-1) const override |
| | Dumps the content of me into the stream.
|
| |
| Deprecated method | InitPointSelectingVolume () and Build() methods should be used instead") 1 void BuildSelectingVolume( const gp_Pnt2d & thePoint) |
| |
| Deprecated method | InitBoxSelectingVolume () and Build() should be used instead") 1 void BuildSelectingVolume( const gp_Pnt2d & theMinPt |
| |
| Deprecated method | InitPolylineSelectingVolume () and Build() should be used instead") 1 void BuildSelectingVolume( const NCollection_Array1<gp_Pnt2d> & thePoints) |
| |
| | SelectBasics_SelectingVolumeManager () |
| | Empty constructor.
|
| |
| virtual | ~SelectBasics_SelectingVolumeManager () |
| | Destructor.
|
| |
| bool | Overlaps (const NCollection_Vec3< double > &theBoxMin, const NCollection_Vec3< double > &theBoxMax, SelectBasics_PickResult &thePickResult) const |
| |
| bool | Overlaps (const NCollection_Vec3< double > &theBoxMin, const NCollection_Vec3< double > &theBoxMax, bool *theInside=nullptr) const |
| |
| bool | Overlaps (const gp_Pnt &thePnt, SelectBasics_PickResult &thePickResult) const |
| |
| bool | Overlaps (const gp_Pnt &thePnt) const |
| |
| bool | Overlaps (const occ::handle< NCollection_HArray1< gp_Pnt > > &theArrayOfPts, int theSensType, SelectBasics_PickResult &thePickResult) const |
| |
| bool | Overlaps (const NCollection_Array1< gp_Pnt > &theArrayOfPts, int theSensType, SelectBasics_PickResult &thePickResult) const |
| |
| bool | Overlaps (const gp_Pnt &thePnt1, const gp_Pnt &thePnt2, SelectBasics_PickResult &thePickResult) const |
| |
| bool | Overlaps (const gp_Pnt &thePnt1, const gp_Pnt &thePnt2, const gp_Pnt &thePnt3, int theSensType, SelectBasics_PickResult &thePickResult) const |
| |
This class is used to switch between active selecting volumes depending on selection type chosen by the user. The sample of correct selection volume initialization procedure:
aMgr.BuildSelectingVolume();
STL input iterator that wraps an OCCT More()/Next() iterator.
Definition NCollection_ForwardRange.hxx:142