Initial commit
This commit is contained in:
13
PepLib.Dxf/DxfExtensions.cs
Normal file
13
PepLib.Dxf/DxfExtensions.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using DxfVector = netDxf.Vector2;
|
||||
using PepVector = PepLib.Vector;
|
||||
|
||||
namespace PepLib.Dxf
|
||||
{
|
||||
internal static class DxfExtensions
|
||||
{
|
||||
public static PepVector ToPepVector(this DxfVector v)
|
||||
{
|
||||
return new PepVector(v.X, v.Y);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user