Package | away3d.tools |
Class | public class Weld |
Inheritance | Weld Object |
Weld
Property | Defined By | ||
---|---|---|---|
countuvs : int [read-only]
returns howmany uvs were deleted during the welding operation. | Weld | ||
countvertices : int [read-only]
returns howmany vertexes were deleted during the welding operation. | Weld | ||
doUVs : Boolean
Defines if the weld operation treats the UV's. | Weld |
Method | Defined By | ||
---|---|---|---|
Weld(doUVs:Boolean = true)
Class Weld removes from the faces found of an object3d all the duplicated vertexes and uv's. | Weld | ||
Apply the welding code to a given object3D. | Weld |
countuvs | property |
countuvs:int
[read-only] returns howmany uvs were deleted during the welding operation.
public function get countuvs():int
countvertices | property |
countvertices:int
[read-only] returns howmany vertexes were deleted during the welding operation.
public function get countvertices():int
doUVs | property |
doUVs:Boolean
Defines if the weld operation treats the UV's.
public function get doUVs():Boolean
public function set doUVs(value:Boolean):void
Weld | () | Constructor |
public function Weld(doUVs:Boolean = true)
Class Weld removes from the faces found of an object3d all the duplicated vertexes and uv's.
ParametersdoUVs:Boolean (default = true ) — [optional] Boolean. If uv's needs to be optimized as well. Default is true.
|
apply | () | method |
public function apply(object3d:Object3D):void
Apply the welding code to a given object3D.
Parameters
object3d:Object3D — Object3D. The target Object3d object.
|