大量更新
This commit is contained in:
17
Szmedi.CADkits/BlockRefWithPosition.cs
Normal file
17
Szmedi.CADkits/BlockRefWithPosition.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Autodesk.AutoCAD.DatabaseServices;
|
||||
using Autodesk.AutoCAD.Geometry;
|
||||
|
||||
namespace Szmedi.CADkits;
|
||||
|
||||
public readonly struct BlockRefWithPosition
|
||||
{
|
||||
public ObjectId ObjectId { get; }
|
||||
|
||||
public Point3d Position { get; }
|
||||
|
||||
public BlockRefWithPosition(ObjectId id, Point3d pos)
|
||||
{
|
||||
ObjectId = id;
|
||||
Position = pos;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user