Initial commit

This commit is contained in:
2026-07-03 16:31:37 +07:00
commit 899c7c637d
1939 changed files with 641750 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
namespace RobotNet10.Shared.Geometry;
/// <summary>
/// Point message (geometry_msgs/Point)
/// Represents a point in free space with x, y, z coordinates
/// </summary>
public struct Point
{
/// <summary>
/// X coordinate
/// </summary>
public double X { get; set; }
/// <summary>
/// Y coordinate
/// </summary>
public double Y { get; set; }
/// <summary>
/// Z coordinate
/// </summary>
public double Z { get; set; }
/// <summary>
/// Default constructor
/// </summary>
public Point()
{
X = 0.0;
Y = 0.0;
Z = 0.0;
}
/// <summary>
/// Constructor with parameters
/// </summary>
public Point(double x, double y, double z)
{
X = x;
Y = y;
Z = z;
}
}