void R3TriangleVertex:: Transform (const R3Transformation& transformation) { // Transform position and normal transformation.Apply(position); transformation.ApplyInverseTranspose(normal); }
void R3Point:: Transform(const R3Transformation& transformation) { // Transform point transformation.Apply(*this); }