diff options
Diffstat (limited to 'hw5/src/shadingFrameTransformation.cpp')
-rw-r--r-- | hw5/src/shadingFrameTransformation.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/hw5/src/shadingFrameTransformation.cpp b/hw5/src/shadingFrameTransformation.cpp new file mode 100644 index 0000000..4d3a7bc --- /dev/null +++ b/hw5/src/shadingFrameTransformation.cpp @@ -0,0 +1,39 @@ +/******************************************************************/ +/* This file is part of the homework assignments for CSCI-427/527 */ +/* at The College of William & Mary and authored by Pieter Peers. */ +/* No part of this file, whether altered or in original form, can */ +/* be distributed or used outside the context of CSCI-427/527 */ +/* without consent of either the College of William & Mary or */ +/* Pieter Peers. */ +/******************************************************************/ +#include "shadingFrameTransformation.h" + + +////////////////// +// Constructors // +////////////////// +shadingFrameTransformation::shadingFrameTransformation(const std::shared_ptr<const shader_base>& shader) + : shader_base() +{ + _shader = shader; +} + + +///////////// +// Methods // +///////////// +color shadingFrameTransformation::shade(const intersectionPoint& ip, const vec3d& light_dir) const +{ + // transform to local shading frame + intersectionPoint localIp(ip); + localIp.inverseTransformShadingFrame( _transformation(ip.textureCoordinate()) ); + + // Done. + return _shader->shade(localIp, light_dir); +} + + +shaderProperties shadingFrameTransformation::properties(const intersectionPoint& ip) const +{ + return _shader->properties(ip); +} |