//-- File : HLRBRep_SurfaceTool.gxx //-- Created : Wed Jui 7 18:00:00 1c93 //-- Author : Laurent BUCHARD //-- //-- Copyright: Matra Datavision 1993 #include #include Standard_Integer HLRBRep_SurfaceTool::NbSamplesU(const Standard_Address S) { Standard_Integer nbs; GeomAbs_SurfaceType typS = ((BRepAdaptor_Surface *)S)->GetType(); switch(typS) { case GeomAbs_Plane: { nbs = 2; } break; case GeomAbs_BezierSurface: { nbs = 3 + ((BRepAdaptor_Surface *)S)->NbUPoles(); } break; case GeomAbs_BSplineSurface: { nbs = ((BRepAdaptor_Surface *)S)->NbUKnots(); nbs*= ((BRepAdaptor_Surface *)S)->UDegree(); if(nbs < 2) nbs=2; } break; case GeomAbs_Torus: { nbs = 20; } break; case GeomAbs_Cylinder: case GeomAbs_Cone: case GeomAbs_Sphere: case GeomAbs_SurfaceOfRevolution: case GeomAbs_SurfaceOfExtrusion: { nbs = 10; } break; default: { nbs = 10; } break; } return(nbs); } Standard_Integer HLRBRep_SurfaceTool::NbSamplesV(const Standard_Address S) { Standard_Integer nbs; GeomAbs_SurfaceType typS = ((BRepAdaptor_Surface *)S)->GetType(); switch(typS) { case GeomAbs_Plane: { nbs = 2; } break; case GeomAbs_BezierSurface: { nbs = 3 + ((BRepAdaptor_Surface *)S)->NbVPoles(); } break; case GeomAbs_BSplineSurface: { nbs = ((BRepAdaptor_Surface *)S)->NbVKnots(); nbs*= ((BRepAdaptor_Surface *)S)->VDegree(); if(nbs < 2) nbs=2; } break; case GeomAbs_Cylinder: case GeomAbs_Cone: case GeomAbs_Sphere: case GeomAbs_Torus: case GeomAbs_SurfaceOfRevolution: case GeomAbs_SurfaceOfExtrusion: { nbs = 15; } break; default: { nbs = 10; } break; } return(nbs); } Standard_Integer HLRBRep_SurfaceTool::NbSamplesU(const Standard_Address S, const Standard_Real u1, const Standard_Real u2) { Standard_Integer nbs = NbSamplesU(S); Standard_Integer n = nbs; if(nbs>10) { Standard_Real uf = FirstUParameter(S); Standard_Real ul = LastUParameter(S); n*= (Standard_Integer)((u2-u1)/(uf-ul)); if(n>nbs) n = nbs; if(n<5) n = 5; } return(n); } Standard_Integer HLRBRep_SurfaceTool::NbSamplesV(const Standard_Address S, const Standard_Real v1, const Standard_Real v2) { Standard_Integer nbs = NbSamplesV(S); Standard_Integer n = nbs; if(nbs>10) { Standard_Real vf = FirstVParameter(S); Standard_Real vl = LastVParameter(S); n*= (Standard_Integer)((v2-v1)/(vf-vl)); if(n>nbs) n = nbs; if(n<5) n = 5; } return(n); }