mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Prs3d::GetDeflection() has been moved to StdPrs_ToolTriangulatedShape::GetDeflection(). Prs3d_ShapeTool has been moved to StdPrs_ShapeTool. Code collecting free edges on Poly_Triangulation has been moved out from StdPrs_WFShape to Prs3d::AddFreeEdges(). StdPrs_BndBox has been moved to Prs3d_BndBox. Geom_Transformation has been replaced by TopLoc_Datum3D within visualization classes. Select3D_SensitiveCircle constructor now takes gp_Circ instead of Geom_Circle. StdSelect_ViewerSelector3d has been moved to SelectMgr_ViewerSelector3d. Methods ::GetPoint3d() and ::ArrayBounds() has been moved from subclass Select3D_SensitiveCircle to the base class Select3D_SensitiveCurve. StdSelect_ViewerSelector3d::computeSensitivePrs() has been moved to SelectMgr::ComputeSensitivePrs(). Removed unused declarations StdSelect_Prs, StdSelect_DisplayMode, StdSelect_SensitivityMode, StdSelect_TypeOfResult, SelectMgr_SOPtr, TColQuantity. Package Graphic3d has been moved from TKV3d to TKService.
79 lines
2.3 KiB
C++
Executable File
79 lines
2.3 KiB
C++
Executable File
#ifndef _User_Cylinder_HeaderFile
|
|
#define _User_Cylinder_HeaderFile
|
|
#ifndef _Standard_Macro_HeaderFile
|
|
#include <Standard_Macro.hxx>
|
|
#endif
|
|
|
|
#include <AIS_InteractiveObject.hxx>
|
|
#include <Standard_DefineHandle.hxx>
|
|
#include <Standard_Macro.hxx>
|
|
#include <Graphic3d_AspectFillArea3d.hxx>
|
|
// Handle definition
|
|
//
|
|
class User_Cylinder;
|
|
DEFINE_STANDARD_HANDLE(User_Cylinder,AIS_InteractiveObject)
|
|
|
|
class User_Cylinder: public AIS_InteractiveObject {
|
|
public:
|
|
Standard_EXPORT User_Cylinder(const Standard_Real R, const Standard_Real H);
|
|
Standard_EXPORT User_Cylinder(const gp_Ax2 CylAx2, const Standard_Real R, const Standard_Real H);
|
|
|
|
~User_Cylinder(){};
|
|
|
|
Standard_Boolean AcceptShapeDecomposition() const;
|
|
Standard_Integer NbPossibleSelection() const;
|
|
void SetColor(const Quantity_Color &aColor);
|
|
|
|
private:
|
|
void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,
|
|
const Handle(Prs3d_Presentation)& aPresentation,
|
|
const Standard_Integer aMode = 0) ;
|
|
void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
|
|
const Standard_Integer aMode) ;
|
|
void computeHLR (const Handle(Graphic3d_Camera)& aProjector, const Handle(TopLoc_Datum3D)& theTrsf, const Handle(Prs3d_Presentation)& aPresentation);
|
|
Standard_Boolean TriangleIsValid(const gp_Pnt& P1,const gp_Pnt& P2,const gp_Pnt& P3) const;
|
|
Quantity_Color Color(gp_Pnt& thePoint,Standard_Real AltMin,Standard_Real AltMax, const Standard_Integer ColorizationMode) ;
|
|
|
|
// some methods like DynamicType() or IsKind()
|
|
//
|
|
DEFINE_STANDARD_RTTIEXT(User_Cylinder,AIS_InteractiveObject)
|
|
private:
|
|
Quantity_Color myColor;
|
|
TopoDS_Shape myShape;
|
|
|
|
Handle(Graphic3d_AspectFillArea3d) myAspect;
|
|
Standard_Real myDeflection;
|
|
|
|
Standard_Boolean myX1OnOff;
|
|
Standard_Boolean myXBlueOnOff;
|
|
Standard_Boolean myXGreenOnOff;
|
|
Standard_Boolean myXRedOnOff;
|
|
Standard_Boolean myY1OnOff;
|
|
Standard_Boolean myYBlueOnOff;
|
|
Standard_Boolean myYGreenOnOff;
|
|
Standard_Boolean myYRedOnOff;
|
|
Standard_Boolean myZ1OnOff;
|
|
Standard_Boolean myZBlueOnOff;
|
|
Standard_Boolean myZGreenOnOff;
|
|
Standard_Boolean myZRedOnOff;
|
|
|
|
gp_Pnt BAR;
|
|
|
|
Standard_Real Umin;
|
|
Standard_Real Umax;
|
|
Standard_Real Vmin;
|
|
Standard_Real Vmax;
|
|
Standard_Real dUmax;
|
|
Standard_Real dVmax;
|
|
|
|
Standard_Real red;
|
|
Standard_Real green;
|
|
Standard_Real blue;
|
|
|
|
|
|
|
|
//Handle(Graphic3d_Texture2Dmanual) mytexture;
|
|
|
|
};
|
|
#endif
|