|
|
|
@ -30,7 +30,6 @@ class PhysObj |
|
|
|
|
@x, @y = @pos[0], @pos[1] |
|
|
|
|
@angle %= 360 |
|
|
|
|
|
|
|
|
|
if( !world.freeze ) then |
|
|
|
|
if( @accel.magnitude != 0 ) then |
|
|
|
|
@vel += @accel |
|
|
|
|
end |
|
|
|
@ -44,7 +43,6 @@ class PhysObj |
|
|
|
|
@saved_pos = @saved_pos[1..-1] |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
def render_path(x_offset=0, y_offset=0) |
|
|
|
|
@saved_pos.each do |pos| |
|
|
|
@ -137,7 +135,6 @@ class Planet < PhysObj |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
def orbit(physobjs) |
|
|
|
|
if( !self.world.freeze ) then |
|
|
|
|
physobjs.each do |obj| |
|
|
|
|
if( self != obj ) then |
|
|
|
|
grav_vec = self.calculate_gravity_vector(obj) |
|
|
|
@ -147,7 +144,6 @@ class Planet < PhysObj |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
# def debug_string |
|
|
|
|
# return "\n#{self.name}\nPos: #{self.pos.round(4)}\nMass: #{self.mass.round(4)}\nRadius: #{self.radius.round(4)} p\nGravity: #{(self.mass*GRAV_CONSTANT).round(2)} p/r^2" |
|
|
|
|