DGtal 1.4.0
Loading...
Searching...
No Matches
testBall3DSurface.cpp
Go to the documentation of this file.
1
30
31#include <iostream>
32#include "DGtal/shapes/parametric/Ball3D.h"
33#include "DGtal/helpers/StdDefs.h"
34#include "DGtal/io/Color.h"
36
37using namespace std;
38using namespace DGtal;
39using namespace Z3i;
40
42// Standard services - public :
43
44
45int main(int /*argc*/, char** /*argv*/)
46{
47
48
49
50 // -------------------------------------------------------------------------- Type declaring
51 typedef Ball3D<Space> EuclideanShape;
52
53 bool test = true;
54
55 // -------------------------------------------------------------------------- Creating the shape
56 double radius = 10;
57 RealPoint c1(0, 0, 0 );
58 EuclideanShape ball1( c1, radius );
59
60 trace.beginBlock("Arc length computing");
61 double arcExp = ball1.arclength( make_pair(0.0,0.0), make_pair(0.0,M_PI) ,500 );
62 double arcTheo = M_PI*radius;
63 trace.info() <<"Computed arc length: "<< arcExp <<endl;
64 trace.info() << "Theoric arc length: "<< arcTheo << endl;
65 if(fabs(arcTheo- arcExp) < 0.1)
66 {
67 trace.info() <<"The arc length has a good value"<<endl;
68 }
69 else
70 {
71 test=false;
72 }
74
75 trace.beginBlock("Surface length computing");
76 double surfaceExp = ball1.surfacelength( make_pair(0.0,0.0), make_pair(M_PI*2,M_PI) ,500 );
77 double surfaceTheo = 4.0*M_PI*radius*radius;
78 trace.info() <<"Computed surface length: "<< surfaceExp <<endl;
79 trace.info() << "Theoric surface length: "<< surfaceTheo << endl;
80 if(fabs(surfaceExp- surfaceTheo) < 0.1)
81 {
82 trace.info() <<"The surface has a good value"<<endl;
83 }
84 else
85 {
86 test=false;
87 }
89
90
91 if (test)
92 return 0;
93 else
94 return -1;
95}
96// //
98
99
Aim: Model of the concept StarShaped3D represents any Sphere in the space.
Definition Ball3D.h:61
Aim: Implements basic operations that will be used in Point and Vector classes.
void beginBlock(const std::string &keyword="")
std::ostream & info()
double endBlock()
DGtal is the top-level namespace which contains all DGtal functions and types.
Trace trace
Definition Common.h:153
STL namespace.
int main()
Definition testBits.cpp:56
bool test(const I &itb, const I &ite)