mirror of
https://github.com/MapMakersAndProgrammers/TankiOnline2.0DemoClient.git
synced 2025-10-27 18:39:10 -07:00
Add mostly deobfuscated package, class and function name source
This commit is contained in:
43
src/alternativa/physics/Contact.as
Normal file
43
src/alternativa/physics/Contact.as
Normal file
@@ -0,0 +1,43 @@
|
||||
package alternativa.physics
|
||||
{
|
||||
import alternativa.math.Vector3;
|
||||
|
||||
public class Contact
|
||||
{
|
||||
public var body1:Body;
|
||||
|
||||
public var body2:Body;
|
||||
|
||||
public var §_-Pe§:Number;
|
||||
|
||||
public var §_-J1§:Number;
|
||||
|
||||
public var normal:Vector3 = new Vector3();
|
||||
|
||||
public var points:Vector.<ContactPoint>;
|
||||
|
||||
public var §_-P3§:int;
|
||||
|
||||
public var §_-HA§:Number = 0;
|
||||
|
||||
public var §_-CV§:Boolean;
|
||||
|
||||
public var next:Contact;
|
||||
|
||||
public var index:int;
|
||||
|
||||
private const §_-29§:int = 8;
|
||||
|
||||
public function Contact(index:int)
|
||||
{
|
||||
this.points = new Vector.<ContactPoint>(this.§_-29§,true);
|
||||
super();
|
||||
this.index = index;
|
||||
for(var i:int = 0; i < this.§_-29§; i++)
|
||||
{
|
||||
this.points[i] = new ContactPoint();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user