blob: e17acdcd4c9d18488de43b5c65ef2a7da031b18f (
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
|
// File: BRepApprox_SurfaceToolGen.gxx
// Created: Thu Jul 20 15:43:10 1995
// Author: Modelistation
// <model@meteox>
#include TheSurface_hxx
Standard_Integer BRepApprox_SurfaceToolGen::NbSamplesU(const TheSurface& S) {
return(10);
}
Standard_Integer BRepApprox_SurfaceToolGen::NbSamplesV(const TheSurface& S) {
return(10);
}
Standard_Integer BRepApprox_SurfaceToolGen::NbSamplesU(const TheSurface& S,
const Standard_Real u1,
const Standard_Real u2) {
return(10);
}
Standard_Integer BRepApprox_SurfaceToolGen::NbSamplesV(const TheSurface& S,
const Standard_Real v1,
const Standard_Real v2) {
return(10);
}
|