comparison OrthancStone/Sources/Toolbox/CoordinateSystem3D.h @ 1650:af312e145980

more tests for CoordinateSystem3D
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 13 Nov 2020 10:44:11 +0100
parents 4a43106bc122
children 9ac2a65d4172
comparison
equal deleted inserted replaced
1649:d77618883551 1650:af312e145980
153 // arbitrarily. 153 // arbitrarily.
154 static CoordinateSystem3D CreateFromPlaneGeneralForm(double a, 154 static CoordinateSystem3D CreateFromPlaneGeneralForm(double a,
155 double b, 155 double b,
156 double c, 156 double c,
157 double d); 157 double d);
158
159 static CoordinateSystem3D CreateFromThreePoints(const Vector& a,
160 const Vector& b,
161 const Vector& c);
158 }; 162 };
159 } 163 }