| Package | infinity3D.engine.types |
| Class | public final class DrawPoint |
| Property | Defined by | ||
|---|---|---|---|
| coords : Point3D
координаты вершины.
| DrawPoint | ||
| uvs : UVCoords
текстурные координаты.
| DrawPoint | ||
| Method | Defined by | ||
|---|---|---|---|
|
Создание экземпляра класса.
| DrawPoint | ||
|
toString():String
Строковое представление DrawPoint.
| DrawPoint | ||
| coords | property |
coords:Point3D [read-write]координаты вершины.
Implementation public function get coords():Point3D
public function set coords(value:Point3D):void
| uvs | property |
uvs:UVCoords [read-write]текстурные координаты.
Implementation public function get uvs():UVCoords
public function set uvs(value:UVCoords):void
| DrawPoint | () | constructor |
public function DrawPoint(coords:Point3D = null, uvs:UVCoords = null)Создание экземпляра класса.
Parameterscoords:Point3D (default = null) — Координаты вершины в трехмерном пространстве.
|
|
uvs:UVCoords (default = null) — Текстурные координаты.
|
| toString | () | method |
public function toString():StringСтроковое представление DrawPoint.
ReturnsString — Cтрока со значениями DrawPoint.
|