16 lines
274 B
C#
16 lines
274 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CommonUsage.Protocols.VDA5050.Objects
|
|
{
|
|
public class trajectory
|
|
{
|
|
public float degree;
|
|
|
|
public float[] knotVector;
|
|
|
|
public controlPoint[] controlPoints;
|
|
}
|
|
}
|