Added missing Plane3::Import
This commit is contained in:
parent
077294b03e
commit
9fc361301d
|
@ -99,6 +99,13 @@ public:
|
||||||
/// The (distance, direction) constructor
|
/// The (distance, direction) constructor
|
||||||
Plane3(const ScalarType &dist, const PointType &dir) { Set(dist, dir); }
|
Plane3(const ScalarType &dist, const PointType &dir) { Set(dist, dir); }
|
||||||
|
|
||||||
|
template <class Q>
|
||||||
|
inline void Import( const Plane3<Q,false> & b )
|
||||||
|
{
|
||||||
|
_offset = ScalarType(b.Offset());
|
||||||
|
_dir = Point3<T>::Construct(b.Direction());
|
||||||
|
}
|
||||||
|
|
||||||
//@{
|
//@{
|
||||||
/** @name Members to access the distance or direction
|
/** @name Members to access the distance or direction
|
||||||
Direction() cannot be assigned directly.
|
Direction() cannot be assigned directly.
|
||||||
|
|
Loading…
Reference in New Issue