Difference between revisions of "Render Part D Assignment"
Line 31: | Line 31: | ||
==CompositeTransform== | ==CompositeTransform== | ||
− | Mixin your Composite module to the CompositeTransform class | + | Mixin your Composite module to the CompositeTransform class. |
<code>include Composite</code> | <code>include Composite</code> | ||
+ | |||
+ | Be sure to invoke <code>initialize_components</code> from the constructor and clean up existing code. For example bounds calculation can use <code>map</code>. | ||
==Scene== | ==Scene== |
Revision as of 05:18, 8 December 2020
In this studio we will evolve our code from Render_Part_C_Assignment to leverage mixins.
Continue editing files in the render/assignment directory.
Contents
Background
Investigate Ruby Modules, specifically the module
and <include> keywords.
Warning
Do NOT use the include
keyword in Ruby as you would typically in C or C++.
Be sure to include within the intended class or module definition.
If you include
at the top-level, it will mixin to Object
!
This may or may not rip a hole in the universe.
Code to Implement
Composite
file: | src/main/ruby/render/assignment/composite.rb | |
module: | Composite | |
methods: | initialize_components() push_component(component) each_component() |
module Composite should define methods initialize_components
, push_component
, and each_component
as well as mixin the Enumerable module.
initialize_components
push_component
push a component onto an array.
each_component
if a block is given, yield for each component. otherwise return a new Enumerator of the components.
Note: be sure to invoke to_enum
with the symbol of the method :each_component
and not invoke the method by mistake.
Enumerable
to add a number of useful methods, include the Enumerable module and use alias_method to alias an :each
method to the :each_component
method.
CompositeTransform
Mixin your Composite module to the CompositeTransform class.
include Composite
Be sure to invoke initialize_components
from the constructor and clean up existing code. For example bounds calculation can use map
.
Scene
Mixin your Composite module to the Scene class and clean up existing code.
include Composite
Testing Your Solution
Unit Test
file: | src/test/ruby/render/part_d/part_d_unit_test.rb | UnitTest |
note: ensure that you have removed all printing to receive credit for any assignment.