summaryrefslogtreecommitdiff
path: root/src/GeomLProp/GeomLProp_SurfaceTool.cxx
blob: 424d1f94d42b2694d8735f5f2f434ff0fae7ef48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// File:	GeomLProp_SurfaceTool.cxx
// Created:	Tue Aug 18 15:16:03 1992
// Author:	Herve LEGRAND
//		<hl@bravox>

#include <GeomLProp_SurfaceTool.ixx>
#include <Geom_Surface.hxx>
#include <GeomAbs_Shape.hxx>


void  GeomLProp_SurfaceTool::Value(const Handle_Geom_Surface& S,
	    const Standard_Real U, const Standard_Real V, gp_Pnt& P)
{
  P = S->Value(U, V);
}

void  GeomLProp_SurfaceTool::D1(const Handle_Geom_Surface& S, 
	 const Standard_Real U, const Standard_Real V, 
	 gp_Pnt& P, gp_Vec& D1U, gp_Vec& D1V)
{
  S->D1(U, V, P, D1U, D1V);
}

void  GeomLProp_SurfaceTool::D2(const Handle_Geom_Surface& S, 
	 const Standard_Real U, const Standard_Real V, 
	 gp_Pnt& P, gp_Vec& D1U, gp_Vec& D1V, gp_Vec& D2U, gp_Vec& D2V, gp_Vec& DUV)
{
  S->D2(U, V, P, D1U, D1V, D2U, D2V, DUV);
}

//=======================================================================
//function : DN
//purpose  : 
//=======================================================================
gp_Vec GeomLProp_SurfaceTool::DN(const Handle_Geom_Surface& S, 
				 const Standard_Real U, 
				 const Standard_Real V,
				 const Standard_Integer IU,
				 const Standard_Integer IV)
{
  return S->DN(U, V, IU, IV);
} 

Standard_Integer  GeomLProp_SurfaceTool::Continuity(const Handle_Geom_Surface& S)
{
  GeomAbs_Shape s = S->Continuity();
  switch (s) {
  case GeomAbs_C0:
    return 0;
  case GeomAbs_C1:
    return 1;
  case GeomAbs_C2:
    return 2;
  case GeomAbs_C3:
    return 3;
  case GeomAbs_G1:
    return 0;
  case GeomAbs_G2:
    return 0;
  case GeomAbs_CN:
    return 3;
  };
  return 0;
}

void  GeomLProp_SurfaceTool::Bounds(const Handle_Geom_Surface& S, 
				    Standard_Real& U1, Standard_Real& V1, 
				    Standard_Real& U2, Standard_Real& V2)
{
  S->Bounds(U1, U2, V1, V2);
}