Exemplo n.º 1
0
	Line(const VectorT& base, const VectorT& direction) : direction(direction), base(base) {
		assert(impl::AlmostEqual(direction.Length(), T(1)));
	}
Exemplo n.º 2
0
	Hyperplane(const VectorT& base, const VectorT& normal) : normal(normal) {
		assert(impl::AlmostEqual(normal.Length(), T(1)));
		scalar = VectorT::Dot(normal, base);
	}
Exemplo n.º 3
0
	Hyperplane(const VectorT& normal, T scalar) : normal(normal), scalar(scalar) {
		assert(impl::AlmostEqual(normal.Length(), T(1)));
	}