大量更新

This commit is contained in:
GG Z
2025-12-23 21:37:02 +08:00
parent 3fc465959b
commit b611efeed9
105 changed files with 5814 additions and 371 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Linq;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.Geometry;
namespace Szmedi.CADkits;
public readonly struct TextWithPosition
{
public ObjectId ObjectId { get; }
public Point3d Position { get; }
public string TextContent { get; }
public TextWithPosition(ObjectId id, Point3d pos, string content)
{
ObjectId = id;
Position = pos;
TextContent = content;
}
}