Initial commit

This commit is contained in:
Pyogenics
2025-01-26 09:32:24 +00:00
commit c0d6d88353
769 changed files with 85894 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
package package_54
{
import package_57.name_213;
public class A3DGeometry
{
private var var_101:name_213;
private var name_132:A3DIndexBuffer;
private var var_277:Vector.<A3DVertexBuffer>;
public function A3DGeometry(id:name_213, indexBuffer:A3DIndexBuffer, vertexBuffers:Vector.<A3DVertexBuffer>)
{
super();
this.var_101 = id;
this.name_132 = indexBuffer;
this.var_277 = vertexBuffers;
}
public function get id() : name_213
{
return this.var_101;
}
public function set id(value:name_213) : void
{
this.var_101 = value;
}
public function get indexBuffer() : A3DIndexBuffer
{
return this.name_132;
}
public function set indexBuffer(value:A3DIndexBuffer) : void
{
this.name_132 = value;
}
public function get vertexBuffers() : Vector.<A3DVertexBuffer>
{
return this.var_277;
}
public function set vertexBuffers(value:Vector.<A3DVertexBuffer>) : void
{
this.var_277 = value;
}
public function toString() : String
{
var result:String = "A3DGeometry [";
result += "id = " + this.id + " ";
result += "indexBuffer = " + this.indexBuffer + " ";
result += "vertexBuffers = " + this.vertexBuffers + " ";
return result + "]";
}
}
}

View File

@@ -0,0 +1,47 @@
package package_54
{
import flash.utils.ByteArray;
public class A3DIndexBuffer
{
private var var_271:ByteArray;
private var var_379:int;
public function A3DIndexBuffer(byteBuffer:ByteArray, indexCount:int)
{
super();
this.var_271 = byteBuffer;
this.var_379 = indexCount;
}
public function get byteBuffer() : ByteArray
{
return this.var_271;
}
public function set byteBuffer(value:ByteArray) : void
{
this.var_271 = value;
}
public function get indexCount() : int
{
return this.var_379;
}
public function set indexCount(value:int) : void
{
this.var_379 = value;
}
public function toString() : String
{
var result:String = "A3DIndexBuffer [";
result += "byteBuffer = " + this.byteBuffer + " ";
result += "indexCount = " + this.indexCount + " ";
return result + "]";
}
}
}

View File

@@ -0,0 +1,61 @@
package package_54
{
import flash.utils.ByteArray;
public class A3DVertexBuffer
{
private var var_273:Vector.<int>;
private var var_271:ByteArray;
private var var_272:uint;
public function A3DVertexBuffer(attributes:Vector.<int>, byteBuffer:ByteArray, vertexCount:uint)
{
super();
this.var_273 = attributes;
this.var_271 = byteBuffer;
this.var_272 = vertexCount;
}
public function get attributes() : Vector.<int>
{
return this.var_273;
}
public function set attributes(value:Vector.<int>) : void
{
this.var_273 = value;
}
public function get byteBuffer() : ByteArray
{
return this.var_271;
}
public function set byteBuffer(value:ByteArray) : void
{
this.var_271 = value;
}
public function get vertexCount() : uint
{
return this.var_272;
}
public function set vertexCount(value:uint) : void
{
this.var_272 = value;
}
public function toString() : String
{
var result:String = "A3DVertexBuffer [";
result += "attributes = " + this.attributes + " ";
result += "byteBuffer = " + this.byteBuffer + " ";
result += "vertexCount = " + this.vertexCount + " ";
return result + "]";
}
}
}