Bitmap/Bézier curves/Cubic: Difference between revisions

Content added Content deleted
(Rename Perl 6 -> Raku, alphabetize, minor clean-up)
(→‎{{header|Raku}}: Fix up some internal links)
Line 1,223: Line 1,223:
(formerly Perl 6)
(formerly Perl 6)
{{works with|Rakudo|2017.09}}
{{works with|Rakudo|2017.09}}
Uses pieces from [[Bitmap#Perl_6| Bitmap]], and [[Bitmap/Bresenham's_line_algorithm#Perl_6| Bresenham's line algorithm]] tasks. They are included here to make a complete, runnable program.
Uses pieces from [[Bitmap#Raku| Bitmap]], and [[Bitmap/Bresenham's_line_algorithm#Raku| Bresenham's line algorithm]] tasks. They are included here to make a complete, runnable program.


<lang perl6>class Pixel { has UInt ($.R, $.G, $.B) }
<lang perl6>class Pixel { has UInt ($.R, $.G, $.B) }