// File: BRepPrimAPI_MakeCone.cxx // Created: Fri Jul 23 15:51:44 1993 // Author: Remi LEQUETTE // #include #include #include #include #include static gp_Ax2 ConeComputeAxes() { static Standard_Integer firsttime=1; static Standard_Integer modif=0; static Standard_Real cosa=cos(0.122); static Standard_Real sina=sin(0.122); static Standard_Real ux=1.0; static Standard_Real uy=0.0; if(firsttime) { modif = getenv("PRIM_CONE") != NULL; firsttime = 0; } if(modif) { Standard_Real nux = cosa*ux+sina*uy; Standard_Real nuy =-sina*ux+cosa*uy; ux=nux; uy=nuy; return(gp_Ax2(gp::Origin(),gp::DZ(),gp_Dir(ux,uy,0.0))); } else { return(gp::XOY()); } } //======================================================================= //function : BRepPrimAPI_MakeCone //purpose : //======================================================================= BRepPrimAPI_MakeCone::BRepPrimAPI_MakeCone(const Standard_Real R1, const Standard_Real R2, const Standard_Real H) : myCone(ConeComputeAxes(),R1, R2, H) { } //======================================================================= //function : BRepPrimAPI_MakeCone //purpose : //======================================================================= BRepPrimAPI_MakeCone::BRepPrimAPI_MakeCone(const Standard_Real R1, const Standard_Real R2, const Standard_Real H, const Standard_Real angle) : myCone( R1, R2, H) { myCone.Angle(angle); } //======================================================================= //function : BRepPrimAPI_MakeCone //purpose : //======================================================================= BRepPrimAPI_MakeCone::BRepPrimAPI_MakeCone(const gp_Ax2& Axes, const Standard_Real R1, const Standard_Real R2, const Standard_Real H) : myCone( Axes, R1, R2, H) { } //======================================================================= //function : BRepPrimAPI_MakeCone //purpose : //======================================================================= BRepPrimAPI_MakeCone::BRepPrimAPI_MakeCone(const gp_Ax2& Axes, const Standard_Real R1, const Standard_Real R2, const Standard_Real H, const Standard_Real angle) : myCone( Axes, R1, R2, H) { myCone.Angle(angle); } //======================================================================= //function : OneAxis //purpose : //======================================================================= Standard_Address BRepPrimAPI_MakeCone::OneAxis() { return &myCone; } //======================================================================= //function : Cone //purpose : //======================================================================= BRepPrim_Cone& BRepPrimAPI_MakeCone::Cone() { return myCone; }