Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

2fc9e7b4 e49d 7d7d f52e 2a917ad2d396

haplokuon edited this page May 6, 2023 · 1 revision

CreateFromFitPoints Method

netDxf 3.0.0 Library

Generate a list of continuous cubic bezier curves that passes through a set of points.

Definition

Namespace: netDxf
Assembly: netDxf (in netDxf.dll) Version: 3.0.0

C#

public static List<BezierCurveCubic> CreateFromFitPoints(
	IEnumerable<Vector3> fitPoints
)

VB

Public Shared Function CreateFromFitPoints ( 
	fitPoints As IEnumerable(Of Vector3)
) As List(Of BezierCurveCubic)

C++

public:
static List<BezierCurveCubic^>^ CreateFromFitPoints(
	IEnumerable<Vector3>^ fitPoints
)

F#

static member CreateFromFitPoints : 
        fitPoints : IEnumerable<Vector3> -> List<BezierCurveCubic> 

Parameters

  IEnumerable(Vector3)
List of points.

Return Value

List(BezierCurveCubic)
A list of cubic bezier curves.

See Also

Reference

BezierCurveCubic Class
netDxf Namespace

Clone this wiki locally