Adds object(s) to the scene.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public void Add(
	List<Plane> planes,
	Scene..::.Layer layer,
	double edgeLength
)
Visual Basic (Declaration)
Public Sub Add ( _
	planes As List(Of Plane), _
	layer As Scene..::.Layer, _
	edgeLength As Double _
)
Visual C++
public:
void Add(
	List<Plane^>^ planes, 
	Scene..::.Layer^ layer, 
	double edgeLength
)

Parameters

planes
Type: System.Collections.Generic..::.List<(Of <(Plane>)>)
A generic list of Plane.
layer
Type: ceometric.VectorGeometry..::.Scene..::.Layer
A layer the plane lies on.
edgeLength
Type: System..::.Double
The length of an edge of the plane.

Remarks

A scene plane will be drawn as a quadratic face with edge length edgeLength, where the Point of the plane lie in the center of the face. The color follows from the color of the layer.

See Also