for marks:
Tuesday, 21 November 2017
Monday, 20 November 2017
Tuesday, 14 November 2017
Algodoo
Algodoo
FIRST - Do the Tutorials /2 marks
Crash Course /22
Tools /27
Sketch tool /25
Show me then POST a screen shot showing completion
Rules for handing in the following challenges:
Show your teacher that your solution works.
You get 3 successive tries:
Complete 3 Successfully = 4/4 marks
Fail 1of 3 trial runs = 3 /4 marks
Fail 2of 3 attempts = 2/4 marks
Fail 3 runs and a rebuild will be requested.
* Screen shot the beginning, middle and ending scene.
add your blog address to each
add your blog address to each
Always leave your scene at the beginning and ready to go.
Create an Algodoo folder in dropbox or Onedrive
Place your solution in DropBox or Onedrive and link it to your blog. In the same fashion as your Planets Qbasic file.
Choose 5 of the first 9 then 10
NO THYME, NO HOVERING, NO THRUSTERS
|
|
|
|
|
|
|
|
|
You build a bridge out of boards. I give you a board – clone it. You’re allowed 15 of them. Two horizontal boards cannot be connected DIRECTLY together-(HINT – use a vertical board between them). Start by connecting to the grey blocks on the canyon walls. ONLY use AXLES! The truck must make it complete and completely to the other side.
Desert Gap
Build a vehicle in the box. Drive it over the gap. It may only flip once.
Do not change the scene. Only use axle power. Everything you create in the box must cross the gap. NO MAGIC. Your car must look like a QUINCE.
ACID challenge
Build pipes then attach propellers and gears. The acid must flow efficiently from one vessel to the next. Try to capture lost fluid or add more or else you may run dry.
Save the town. Only build in the boxes. Do not fixate to the scene.
Bring the children to school
Must fit inside the box
NO THYME, NO HOVERING, NO THRUSTERS
Only Use: Wood, Steel, Glass and Rubber
Children may not break bones
Children may only be stuck to their seats using 1 fixate on their orange body.
Driver Must Be included, and has to hold onto a steering wheel
NO THYME, NO HOVERING, NO THRUSTERS
Only Use: Wood, Steel, Glass and Rubber
Children may not break bones
Children may only be stuck to their seats using 1 fixate on their orange body.
Driver Must Be included, and has to hold onto a steering wheel
Marble Machine
Build a machine to move the marbles.
Junkyard Wars
Build vehicle from the junk pile. Drive it to the end.
You have to capture it, push its off collision course or send it back into orbit.
Rules:
-build inside the red line
-No Killers
-No Immortal
-No attraction
-No attaching to background in any way
-No attaching to earth in anyway
-No stealing ideas
-No editing the scene
-No gravity binding or anything to do with gravity.
-No scripting
-No collision G (it’s used to scene)
If you destroy Earth - 0
If you destroy Moon– 2/4
If you catch the Moon - 3/4
Send the moon back into a stable orbit - 4/4
#10 Your Own Challenge
Solve your Challenge. Write the rules. Develop the Template
Screenshot the template – screenshot the solution
Post the template and solution links from your dropbox
----------------------------------------------------------------------------------------------------------------------------
Thursday, 19 October 2017
Qbasic - SCREEN 12
- Place QB64 in your oneDrive
This will be your first line of Code:
SCREEN 12
This is graphics mode: 640 x 480 with 16 colours
or
SCREEN 13
This is graphics mode: 320 x 200 with 256 colours
***************************************
** LINK QBasic Tutorials Series 28 -38 LINK **
***************************************
https://www.youtube.com/watch?v=Jo3bLrkmveI
CLS 'clear screen also good to start with
SLEEP ' will run until you hit a key
circle (x,y), radius, color, , , ratio (height/width) - the commas are important
example: circle (300,300),100, 14, , , 2/5 'width flat yellow ellipse
circle (500,400),60, 6, , , 3/2 'tall thin brown ellipse
Arc use the circle, radians and a ratio
circle (x,y),radius, color, start angle, end angle, ratio (height/width)
example: circle (50,50),200,5,0,3.14,1/2 ' top half of magenta circle
circle (150,150),100,3,3.14,6.26,1/2 ' bottom half of cyan circle
LINE (x1,y1)-(x2,y2),color 'points at either end of a line
Example: LINE (20,20)-(50,50), 10 ' a light green line between 2 points
Box uses the line tool
LINE (50,50)-(200,200), 11, B 'B creates a light cyan empty box from the line coordinates
LINE (100,100)-(300,300),12,BF ' BF creates a light red FILLED box no edge color
first post: your best version of this image (along with the code)
- first line will be your blog address
- comments are a must
- make a link to your .bas file in your OneDrive

SCREEN 12
This is graphics mode: 640 x 480 with 16 colours
or
SCREEN 13
This is graphics mode: 320 x 200 with 256 colours
***************************************
** LINK QBasic Tutorials Series 28 -38 LINK **
***************************************
https://www.youtube.com/watch?v=Jo3bLrkmveI
color 0 'black
Color Chart | |||
---|---|---|---|
0 Black | 4 Red | 8 Gray | 12 Light Red |
1 Blue | 5 Magenta | 9 Light Blue | 13 Light Magenta |
2 Green | 6 Brown | 10 Light Green | 14 Yellow |
3 Cyan | 7 white | 11 Light Cyan | 15 Bright White |
CLS 'clear screen also good to start with
SLEEP ' will run until you hit a key
CIRCLE (x,y), radius, color
example: circle (100,250),75,4 'a red circle
PAINT(x,y), paint color, border color
example: paint (100,250),1,4 'paint the colour blue in the inside of a red object
Ellipse uses the circle and a ratio
example: circle (100,250),75,4 'a red circle
PAINT(x,y), paint color, border color
example: paint (100,250),1,4 'paint the colour blue in the inside of a red object
Ellipse uses the circle and a ratio
circle (x,y), radius, color, , , ratio (height/width) - the commas are important
example: circle (300,300),100, 14, , , 2/5 'width flat yellow ellipse
circle (500,400),60, 6, , , 3/2 'tall thin brown ellipse
Arc use the circle, radians and a ratio
circle (x,y),radius, color, start angle, end angle, ratio (height/width)
example: circle (50,50),200,5,0,3.14,1/2 ' top half of magenta circle
circle (150,150),100,3,3.14,6.26,1/2 ' bottom half of cyan circle
LINE (x1,y1)-(x2,y2),color 'points at either end of a line
Example: LINE (20,20)-(50,50), 10 ' a light green line between 2 points
Box uses the line tool
LINE (50,50)-(200,200), 11, B 'B creates a light cyan empty box from the line coordinates
LINE (100,100)-(300,300),12,BF ' BF creates a light red FILLED box no edge color
first post: your best version of this image (along with the code)
- first line will be your blog address
- comments are a must
- make a link to your .bas file in your OneDrive
Friday, 29 September 2017
Animate - Masking
FLASH - Masking Techniques
1 . Basic Mask
2 . Light Effect
3. Shimmer Efect
4. Mouse control
5. Mouse with animation
The following tutorial constitutes 3 separate ANIMATE projects = separate SWF posts
do the same tutorial
with a different image
on your own
do the same tutorial
with a different image
on your own
masking Tutorial
1 . Basic Mask
2 . Light Effect
3. Shimmer Efect
4. Mouse control
5. Mouse with animation
Tuesday, 26 September 2017
CodeAcademy LearnPYTHON
for marks
POST YOUR BADGES
LIKE PYTHON? - here is something extra for FLEX TIME
POST YOUR BADGES
Monday, 25 September 2017
Subscribe to:
Posts (Atom)
Exit Interview
Exit Interview You have reached the end of the course. Some assignments you may have enjoyed while others ... Question 1: Which assig...
-
Place QB64 in your oneDrive This will be your first line of Code: SCREEN 12 This is graphics mode: 640 x 480 with 16 colours...
-
Flappy Bird Animate (Flash) CC HTML5 Tutorial Part 1 – based on- https://blogs.adobe.com/creativecloud/building-a-html5-f...
-
Exit Interview You have reached the end of the course. Some assignments you may have enjoyed while others ... Question 1: Which assig...