Difference between revisions of "Render Part A Assignment"
Jump to navigation
Jump to search
Line 36: | Line 36: | ||
====Component==== | ====Component==== | ||
− | Quadratic (Second Order) Curve: | + | {| class="wikitable" style="text-align: right; " |
− | [[File:Bézier_2_big.svg]] [[File:Bézier_2_big.gif]] | + | | Quadratic (Second Order) Curve: |
− | + | | [[File:Bézier_2_big.svg]] | |
− | + | | [[File:Bézier_2_big.gif]] | |
− | [[File:Bézier_3_big.svg]] [[File:Bézier_3_big.gif]] | + | |- |
− | + | | Quadratic (Third Order) Curve: | |
− | Fourth Order Curve: | + | | [[File:Bézier_3_big.svg]] |
− | [[File:Bézier_4_big.svg]] [[File:Bézier_4_big.gif]] | + | | [[File:Bézier_3_big.gif]] |
+ | |- | ||
+ | | Fourth Order Curve: | ||
+ | | [[File:Bézier_4_big.svg]] | ||
+ | | [[File:Bézier_4_big.gif]] | ||
+ | |} | ||
[[File:Render_bezier_curve.png]] | [[File:Render_bezier_curve.png]] |
Revision as of 18:13, 10 July 2019
Contents
OpenGL
Code to Investigate
ruby/examples/cavalcade_of_graphics.rb
Code to Implement
Components
Each of the renderable components has its own file in the ruby/render/assignment directory.
Equilateral Triangle
Rectangle
Ellipse
Chord
Image
Text
Bézier Curve
Point2
To support Bézier curves you will want to implement the point2.rb. You may wish to use Ruby's convenient Struct construct.
You should be able to construct a Point2 with an x and a y and be able to access those values.
Component
Quadratic (Second Order) Curve: | ||
Quadratic (Third Order) Curve: | ||
Fourth Order Curve: |