Örgü için yumuşatma grubu oluştur
Contents
[
Hide
]
Using Aspose.3D for .NET, developers can create smoothing group for mesh.
Örgü için yumuşatma grubu oluştur
You can create a VertexElementSmoothingGroup
instance by CreateElement
method of Mesh
, A smoothing group is a group of polygons in a polygon mesh which should appear to form a smooth surface.
Programming ample ample
Bu kod örneği bir küp ağı oluşturur ve elle atanan verilerle yumuşatma bir grup örneği oluşturur.
//create a cube with 6 faces
var box = (new Box()).ToMesh();
//create a smoothing group
var sg = (VertexElementSmoothingGroup)box.CreateElement(VertexElementType.SmoothingGroup, MappingMode.Polygon, ReferenceMode.Direct);
//assign data for each polygon
sg.SetData(new int[] {0, 0, 0, 1, 2, 3 });
//save the model to FBX file which support VertexElementSmoothingGroup export.
var scene = new Scene(box);
scene.Save("box-sg.fbx");