Add mostly deobfuscated package, class and function name source

This commit is contained in:
Pyogenics
2025-05-09 17:55:37 +01:00
parent bbf438a33f
commit f8ac96858f
1034 changed files with 48614 additions and 40522 deletions

View 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();
}
}
}
}