Browse Search Popular Register Upload Rules User list Login:
Search:
Crank the light!

Image:
screenshot of the scene

Author: Pooku

Group: Default

Filesize: 127.07 kB

Date added: 2018-10-24

Rating: 5

Downloads: 474

Views: 313

Comments: 2

Ratings: 1

Times favored: 0

Made with: Algodoo v2.1.0

Tags:

Scene tag

Use the drag tool to crank with the red circle.
Please log in to rate this scene
edit
Similar scenes
Title: excavator
Rating: 5
Filesize: 0.87 MB
Downloads: 344
Comments: 0
Ratings: 1
Date added: 2026/02/27 23:34:13
Made with: Algodoo v2.2.4
Rating: rated 5
download
Title: hand powered recovery center 2.0
Rating: 5
Filesize: 0.8 MB
Downloads: 2291
Comments: 0
Ratings: 1
Date added: 2025/04/08 02:17:57
Made with: Algodoo v2.2.3
Rating: rated 5
download
Title: Marble Camp (14/31) [Reupload 3]
Rating: 5
Filesize: 21.07 kB
Downloads: 486
Comments: 2
Ratings: 1
Date added: 2015/05/20 04:29:27
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Marble Camp 16/31 [Reupload 5]
Rating: 5
Filesize: 42.72 kB
Downloads: 462
Comments: 4
Ratings: 1
Date added: 2015/05/24 09:25:02
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: crank subsitut engine
Rating: 5
Filesize: 265.44 kB
Downloads: 436
Comments: 0
Ratings: 1
Date added: 2010/11/03 13:39:20
Made with: Phun
Rating: rated 5
download
Title: stars in the diamond galixy
Rating: 5
Filesize: 0.65 MB
Downloads: 587
Comments: 2
Ratings: 1
Date added: 2016/03/05 23:50:53
Made with: Algodoo v2.1.0
Rating: rated 5
download
This only works when the crank is turned counter-clockwise. That's because the angvel value can be positive or negative depending on the direction that the circle is rotating. You can fix that by calculating the absolute value of angvel as follows:

x = angvel;
x < 0 ? {x = - x} : {};
scene.my.ang = x
Well, I do it diffrently because it's like real life. If you turn a crank the right way, the LED lights up. That's why I did it in a way that simulates real-life... Well not really, but that was a test project. This is what I used.

Thank you for informing me.