ln.ethercat/ln.ethercat/kinematics/Position.cs

20 lines
418 B
C#

using System.Numerics;
namespace ln.ethercat.kinematics
{
public struct Position
{
public readonly Vector3 Base;
public readonly Vector3 X;
public readonly Vector3 Y;
public readonly Vector3 Z;
public Position(Vector3 b, Vector3 x, Vector3 y, Vector3 z)
{
Base = b;
X = x;
Y = y;
Z = z;
}
}
}