Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
PC Specs
Intel Q8200 CPU; Radeon HD 6850 GPU, Antec P180 Case, Corsair Enthusiast 650 Watt PSU, ECS Motherboard,…
Favorite Forums
Favorite Tags
Member Avatar for shasta90

[url]http://www.daniweb.com/software-development/python/threads/187060/1572491#post1572491[/url] based on a previous thread I would like to know how to replicate the appearance of a house five times on the gasp interface via the script below: #!/usr/bin/env python from gasp import * # import everything from the gasp library begin_graphics(title="Houses At Night", background=color.BLACK) # open the graphics …

Member Avatar for ~s.o.s~
0
1K
Member Avatar for DragonSlayerX

[CODE]from gasp import * begin_graphics() Circle((200, 200), 60) Line((100, 400), (580, 200)) Box((400, 350), 120, 100) update_when('key_pressed') end_graphics() [/CODE]

Member Avatar for DragonSlayerX
0
98
Member Avatar for DragonSlayerX

[CODE]class Triangle: def __init__(self,x,y,z): self.x = x self.y = y self.z = z def perimeter(self): return self.x + self.y + self.z def area(self): ang = acos(self.y^2 - self.x^2 - self.z^2 / -2 * self.x * self.z) h = sin(ang) * self.x return self.z * h / 2 triangle = Triangle(input("Please …

Member Avatar for Gribouillis
0
124