Difference between revisions of "W1502 Object Attributes"

From Coder Merlin
 
(14 intermediate revisions by 3 users not shown)
Line 1: Line 1:
= Prerequisites =
[[File:RGB color wheel 24.svg|thumb|link=|RGB color wheel 24]]
== Prerequisites ==
* [[W1501 Introduction to Objects]]
* [[W1501 Introduction to Objects]]
== Background ==
* Read [https://en.wikipedia.org/wiki/Color Color] (Wikipedia)
* To customize your colors: [https://rgbcolorcode.com color picker] (RBG Color Code)


= Research =  
== Prepare ==
* Predefined color names may be found here:  [https://www.w3.org/wiki/CSS/Properties/color/keywords CSS Color Keywords], or, colors may be created by their RGB values using the constructor Color(red:UInt8, green:UInt8, blue:UInt8)
{{ScenesShellPrepare|W1502}}


= Experiment =
== Experiment ==
{{StopProgram|Stop the running program.
Return to the ''console'' and press {{SpecialKey|CONTROL|C}}
}}


Enter into the IgisShellD directory of the W1501 experience.
<syntaxhighlight lang="bash">
cd ~/Experiences/W1501/Sources/IgisShellD
</syntaxhighlight>


Open main.swift in emacs.
Open the file {{Pathname|Background.swift}} in emacs.
<syntaxhighlight lang="bash">
emacs main.swift
</syntaxhighlight>


Find the function within the Painter object named "setup".  Edit the contents as follows to specify the fill color of the rectangle:
Add a new method (below ''init'') as follows:
<syntaxhighlight lang="swift">
<syntaxhighlight lang="swift">
     func setup(canvas:Canvas) {
     override func setup(canvasSize:Size, canvas:Canvas) {
         let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
         let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
         let rectangle = Rectangle(rect:rect)
         let rectangle = Rectangle(rect:rect)
         let fillStyle = FillStyle(color:Color(.blue))
         let fillStyle = FillStyle(color:Color(.blue))
         canvas.paint(fillStyle)
         canvas.render(fillStyle, rectangle)
        canvas.paint(rectangle)
     }
     }
</syntaxhighlight>
</syntaxhighlight>


Now, suspend emacs and then run the program again.
Remember to save the file, then suspend emacs.
<syntaxhighlight lang="bash">
 
swift run
{{Hint|
Predefined color names may be found here:  [https://www.w3.org/wiki/CSS/Properties/color/keywords CSS Color Keywords], or, colors may be created by their RGB values using the constructor:
<syntaxhighlight lang="swift">
Color(red:UInt8, green:UInt8, blue:UInt8)
</syntaxhighlight>
</syntaxhighlight>
}}
{{RunProgram|Run the program and refresh the browser page.}}
{{Observe|: Section 1|
# What do you observe?
# Is the rectangle wider than it is tall or taller than it is wide?  Why?
# Is the rectangle filled or only an outline?  Why?
# What color is the rectangle?  Why is it that specific shade rather than a similar color?
}}
{{StopProgram|Stop the running program.}}


Now, refresh the browser page. 


Let's stroke the rectangle in green instead of filling it.  Interrupt the running program and then resume emacs and edit the setup function so it appears as follows:
Let's stroke the rectangle in green instead of filling it.  Interrupt the running program and then resume emacs and edit the setup function so it appears as follows:
<syntaxhighlight lang="swift">
<syntaxhighlight lang="swift" highlight="3-5">
     func setup(canvas:Canvas) {
     override func setup(canvasSize:Size, canvas:Canvas) {
         let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
         let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
         let rectangle = Rectangle(rect:rect, fillMode:.stroke)
         let rectangle = Rectangle(rect:rect, fillMode:.stroke)
         let strokeStyle = StrokeStyle(color:Color(.green))
         let strokeStyle = StrokeStyle(color:Color(.green))
         canvas.paint(strokeStyle)
         canvas.render(strokeStyle, rectangle)
        canvas.paint(rectangle)
     }
     }
</syntaxhighlight>
</syntaxhighlight>


Now, suspend emacs and then run the program again.
Remember to save the file, then suspend emacs.
<syntaxhighlight lang="bash">
 
swift run
{{RunProgram|Run the program and refresh the browser page.}}
</syntaxhighlight>
 
 
{{Observe|: Section 2|
# What do you observe?
# Is the rectangle filled or only an outline?  Why?
# What color is the rectangle?  Why is it that specific shade rather than a similar color?
}}
 
 
{{StopProgram|Stop the running program.}}


Now, refresh the browser page. 


Let's thicken the stroke line.  Interrupt the running program and then resume emacs and add the following lines so that the entire function appears as:
Let's thicken the stroke line.  Interrupt the running program and then resume emacs and add the following lines so that the entire function appears as:
<syntaxhighlight lang="swift">
<syntaxhighlight lang="swift" highlight="5-6">
     func setup(canvas:Canvas) {
     override func setup(canvasSize:Size, canvas:Canvas) {
         let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
         let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
         let rectangle = Rectangle(rect:rect, fillMode:.stroke)
         let rectangle = Rectangle(rect:rect, fillMode:.stroke)
         let strokeStyle = StrokeStyle(color:Color(.green))
         let strokeStyle = StrokeStyle(color:Color(.green))
         let lineWidth = LineWidth(width:5)
         let lineWidth = LineWidth(width:5)
         canvas.paint(strokeStyle)
         canvas.render(strokeStyle, lineWidth, rectangle)
        canvas.paint(lineWidth)
        canvas.paint(rectangle)
     }
     }
</syntaxhighlight>
</syntaxhighlight>


Now, suspend emacs and then run the program again.
Remember to save the file, then suspend emacs.
<syntaxhighlight lang="bash">
 
swift run
{{RunProgram|Run the program and refresh the browser page.}}
</syntaxhighlight>
 
 
{{Observe|: Section 3|
# What do you observe?
# How has the appearance of the rectangle changed from the previous section?  Why?
}}
 


Now, refresh the browser page.
{{StopProgram|Stop the running program.}}


Finally, let's both stroke and fill simultaneously.  Interrupt the running program and then resume emacs and add the following lines so that the entire function appears as:
Finally, let's both stroke and fill simultaneously.  Interrupt the running program and then resume emacs and add the following lines so that the entire function appears as:
<syntaxhighlight lang="swift">
<syntaxhighlight lang="swift" highlight="3,4,5,7">
     func setup(canvas:Canvas) {
     override func setup(canvasSize:Size, canvas:Canvas) {
         let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
         let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
         let rectangle = Rectangle(rect:rect, fillMode:.fillAndStroke)
         let rectangle = Rectangle(rect:rect, fillMode:.fillAndStroke)
Line 81: Line 108:
         let strokeStyle = StrokeStyle(color:Color(.blue))
         let strokeStyle = StrokeStyle(color:Color(.blue))
         let lineWidth = LineWidth(width:5)
         let lineWidth = LineWidth(width:5)
         canvas.paint(fillStyle)
         canvas.render(fillStyle, strokeStyle, lineWidth, rectangle)
        canvas.paint(strokeStyle)
        canvas.paint(lineWidth)
        canvas.paint(rectangle)
     }
     }
</syntaxhighlight>
</syntaxhighlight>


Now, suspend emacs and then run the program again.
Remember to save the file, then suspend emacs.
<syntaxhighlight lang="bash">
 
swift run
{{RunProgram|Run the program and refresh the browser page.}}
</syntaxhighlight>
 
 
{{Observe|: Section 4|
# What do you observe?
# How has the appearance of the rectangle changed from the previous section?  Why?
}}
 
 
{{StopProgram|Stop the running program.}}


Now, refresh the browser page.
Before beginning the exercises, remove the above code and then recreate your skyscrapers (and only your skyscrapers) from the previous experience.  (You may copy/paste the required code from [[W1501 Introduction to Objects]].)


== Exercises ==
== Exercises ==
Continuing your previous project of (at least) three skyscrapers:
* {{Assignment|J1502}} Create a journal and answer all questions.  Be sure to include all sections of the journal, properly formatted.
# Color the sky and ground
* Continuing from your existing three skyscrapers:
# Color the body of each skyscraper in a different color
*# Color the sky and ground
# Color various aspects of your skyscraper (e.g. windows, doors) in different colors
*# Color the body of each skyscraper in a different color
 
*# Color various aspects of your skyscraper (e.g. windows, doors) in different colors
When done, you must have at least seven different colors on your canvas.
When done, you must have at least seven different colors on your canvas.
* {{MMMAssignment|M1502-28}}
[[Category:IGIS]]

Latest revision as of 14:25, 17 February 2022

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder
RGB color wheel 24

Prerequisites[edit]

Background[edit]

Prepare[edit]

Create a new Scenes shell project within your Experiences directory:

ty-cam@codermerlin:~$  cd ~/Experiences

ty-cam@codermerlin:~/Experiences$  git clone https://github.com/TheCoderMerlin/ScenesShellBasic W1502


Enter the Sources/ScenesShell directory of the new project:

ty-cam@codermerlin:~/Experiences$  cd W1502/Sources/ScenesShell/


Start button green arrow
Run the program.

ty-cam@codermerlin:~/Experiences/W1502/Sources/ScenesShell$  run


Ensure that you are logged on to the wiki. Then, click on the Tools menu followed by right-clicking on IGIS and selecting the menu item Open in New Window or Open in New Tab.

You'll know you're successful if you see the title bar change to "Coder Merlin: IGIS". (The browser window will be blank because we haven't added any graphics yet.)

Hint.pngHelpful Hint
It's useful to bookmark this page in your browser.

Experiment[edit]

Stop button red ex
Stop the running program.

Return to the console and press CONTROL-C


Open the file Background.swift in emacs.

Add a new method (below init) as follows:

    override func setup(canvasSize:Size, canvas:Canvas) {
        let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
        let rectangle = Rectangle(rect:rect)
        let fillStyle = FillStyle(color:Color(.blue))
        canvas.render(fillStyle, rectangle)
    }

Remember to save the file, then suspend emacs.

Hint.pngHelpful Hint

Predefined color names may be found here: CSS Color Keywords, or, colors may be created by their RGB values using the constructor:

Color(red:UInt8, green:UInt8, blue:UInt8)


Start button green arrow
Run the program and refresh the browser page.


ObserveObserveIcon.png
Observe, Ponder, and Journal: : Section 1
  1. What do you observe?
  2. Is the rectangle wider than it is tall or taller than it is wide? Why?
  3. Is the rectangle filled or only an outline? Why?
  4. What color is the rectangle? Why is it that specific shade rather than a similar color?


Stop button red ex
Stop the running program.


Let's stroke the rectangle in green instead of filling it. Interrupt the running program and then resume emacs and edit the setup function so it appears as follows:

    override func setup(canvasSize:Size, canvas:Canvas) {
        let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
        let rectangle = Rectangle(rect:rect, fillMode:.stroke)
        let strokeStyle = StrokeStyle(color:Color(.green))
        canvas.render(strokeStyle, rectangle)
    }

Remember to save the file, then suspend emacs.

Start button green arrow
Run the program and refresh the browser page.


ObserveObserveIcon.png
Observe, Ponder, and Journal: : Section 2
  1. What do you observe?
  2. Is the rectangle filled or only an outline? Why?
  3. What color is the rectangle? Why is it that specific shade rather than a similar color?


Stop button red ex
Stop the running program.


Let's thicken the stroke line. Interrupt the running program and then resume emacs and add the following lines so that the entire function appears as:

    override func setup(canvasSize:Size, canvas:Canvas) {
        let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
        let rectangle = Rectangle(rect:rect, fillMode:.stroke)
        let strokeStyle = StrokeStyle(color:Color(.green))
        let lineWidth = LineWidth(width:5)
        canvas.render(strokeStyle, lineWidth, rectangle)
    }

Remember to save the file, then suspend emacs.

Start button green arrow
Run the program and refresh the browser page.


ObserveObserveIcon.png
Observe, Ponder, and Journal: : Section 3
  1. What do you observe?
  2. How has the appearance of the rectangle changed from the previous section? Why?


Stop button red ex
Stop the running program.

Finally, let's both stroke and fill simultaneously. Interrupt the running program and then resume emacs and add the following lines so that the entire function appears as:

    override func setup(canvasSize:Size, canvas:Canvas) {
        let rect = Rect(topLeft:Point(x:100, y:50), size:Size(width:200, height:300))
        let rectangle = Rectangle(rect:rect, fillMode:.fillAndStroke)
        let fillStyle = FillStyle(color:Color(.green))
        let strokeStyle = StrokeStyle(color:Color(.blue))
        let lineWidth = LineWidth(width:5)
        canvas.render(fillStyle, strokeStyle, lineWidth, rectangle)
    }

Remember to save the file, then suspend emacs.

Start button green arrow
Run the program and refresh the browser page.


ObserveObserveIcon.png
Observe, Ponder, and Journal: : Section 4
  1. What do you observe?
  2. How has the appearance of the rectangle changed from the previous section? Why?


Stop button red ex
Stop the running program.

Before beginning the exercises, remove the above code and then recreate your skyscrapers (and only your skyscrapers) from the previous experience. (You may copy/paste the required code from W1501 Introduction to Objects.)

Exercises[edit]

  •  J1502  Create a journal and answer all questions. Be sure to include all sections of the journal, properly formatted.
  • Continuing from your existing three skyscrapers:
    1. Color the sky and ground
    2. Color the body of each skyscraper in a different color
    3. Color various aspects of your skyscraper (e.g. windows, doors) in different colors

When done, you must have at least seven different colors on your canvas.

  •  M1502-28  Complete  Merlin Mission Manager  Mission M1502-28.