18 lines
347 B
C#
18 lines
347 B
C#
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;
|
|
}
|
|
}
|