Click or drag to resize

PointCloudVisualCreateWedgeSurface Method (Document, Int32, Color, Double, Double, Double, Double)

Create a wedge surface point cloud visual parented to the scene of the given document.

Namespace:  Demo3D.Visuals
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 15.0.2.11458
Syntax
C#
public static PointCloudVisual CreateWedgeSurface(
	Document doc,
	int numPoints,
	Color color,
	double angle,
	double length,
	double height,
	double width
)

Parameters

doc
Type: Demo3D.VisualsDocument
Document to create the point cloud visual in.
numPoints
Type: SystemInt32
Number of points to create on the wedge.
color
Type: System.DrawingColor
Color of the points to create on the wedge.
angle
Type: SystemDouble
The angle of the wedge from the bottom to the top right in the X/Y plane. 90 degrees is vertical.
length
Type: SystemDouble
The length of the wedge.
height
Type: SystemDouble
The height of the wedge.
width
Type: SystemDouble
The width of the wedge.

Return Value

Type: PointCloudVisual
New point cloud visual containing the points on the requested wedge surface.
See Also