Creates a 3D surface.
Syntax: |
---|
DlxSurface.End() |
Return Value
If the operation ends correctly it returns true otherwise it returns false.
Example
Copy code | |
---|---|
function OnBuild3DModel()
{
var ctx = FWiz.Get3DModelCtx();
var style = FWiz.Get3DStyle(0);
style.SetStyle("gold");
var shape = new DlxFigure();
shape.SetRectangle(0, 0, 20, 20, -25, -25, 30, 30);
shape.EndShape();
var hole = new DlxFigure();
hole.AddArc(new DlxPoint(0, 0), 5);
hole.EndShape();
var obj = new DlxSurface(shape, style);
obj.AddHole(hole);
obj.End();
obj.Rotate(0, 45, 0);
ctx.Add(obj);
}
|