~team-scandraid/scandraid/ScanDraiD

« back to all changes in this revision

Viewing changes to src/ScanDraiD.hpp

  • Committer: Arno Wilhelm
  • Date: 2009-03-17 12:04:52 UTC
  • Revision ID: a.w@quirxi.net-20090317120452-k4b1p3imr0mlcimj
Renamed AngleSideAngle2SideAngleSide method so that is standard conform and minor changes to format and documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
namespace scanDraiD {
28
28
 
 
29
/**
 
30
* TODO
 
31
*/
29
32
class ScanDraiD
30
33
{
31
34
public:
79
82
        point(const float x, const float y, const float z)
80
83
            : x_(x), y_(y), z_(z)
81
84
        {;}
82
 
        
 
85
 
83
86
        float x_;
84
87
        float y_;
85
88
        float z_;
89
92
        std::vector<point> points_;
90
93
    };
91
94
    /**
92
 
    * Converts two Angles with a Side (Angle-Side-Angle) into Side-Angle-Side - 
 
95
    * Converts two Angles with a Side (Angle-Side-Angle) into Side-Angle-Side -
93
96
    * the remaining facts from the triangle.
 
97
    * @todo reorder parameter list ?
94
98
    */
95
 
    void AngleSideAngle2SideAngleSide(float angA, const float lenB, float angC, float* const lenA,
 
99
    void convertAngleSideAngle2SideAngleSide(float angA, const float lenB, float angC, float* const lenA,
96
100
                                      float* const angB, float* const lenC) const
97
101
        throw();
98
102
    void getNumberOfFrames(const std::string& path2Frames)