Click or drag to resize
AB4D logo

Model3DFactoryCreateHorizontalCircle Method

Creates a horizontally aligned 3D circle.

Namespace: Ab3d.Models
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax
C#
public static GeometryModel3D CreateHorizontalCircle(
	Point3D centerPosition,
	double radius,
	int segments,
	Material material
)

Parameters

centerPosition  Point3D
circle center position
radius  Double
radius of the circle
segments  Int32
number of segments that are used to define the circle
material  Material
material

Return Value

GeometryModel3D
3D Circle model as GeometryModel3D
Remarks

To create customly aligned circle use CreateCircle(Point3D, Vector3D, Vector3D, Double, Int32, Material) method.

See Also