/******************************************************************/ /* 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& 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); }