Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Geometric transform #457

Open
wants to merge 54 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
ad9289b
submodules
DomCR Sep 24, 2024
9d95a94
update utilities
DomCR Sep 24, 2024
821b997
entity abstract methods
DomCR Sep 24, 2024
cbcc68d
implementation
DomCR Sep 24, 2024
98fa6b3
Merge remote-tracking branch 'origin/master' into Geometric-transform
DomCR Sep 27, 2024
e92fe2e
merge
DomCR Feb 15, 2025
d55097b
submodule
DomCR Feb 15, 2025
29da415
build fix
DomCR Feb 15, 2025
6a1b80a
merge
DomCR Feb 15, 2025
36b638a
save
DomCR Feb 15, 2025
1239aab
Merge remote-tracking branch 'origin/master' into Geometric-transform
DomCR Feb 15, 2025
d6d3542
methods
DomCR Feb 15, 2025
b58cccb
line translation
DomCR Feb 15, 2025
2214de9
EscalationTest
DomCR Feb 15, 2025
6bda832
line transform
DomCR Feb 15, 2025
00e4437
point
DomCR Feb 15, 2025
106dd68
circle
DomCR Feb 17, 2025
7790c03
arc
DomCR Feb 17, 2025
dd1cb37
insert
DomCR Feb 17, 2025
2757c61
submodule
DomCR Feb 17, 2025
1532858
aligned
DomCR Feb 17, 2025
5fc3d41
format
DomCR Feb 21, 2025
8f0092b
merge
DomCR Feb 27, 2025
26fa0e6
insert fix
DomCR Feb 27, 2025
2765b6b
insert fix
DomCR Mar 1, 2025
c870306
text transform
DomCR Mar 3, 2025
89ebfd0
mtext
DomCR Mar 3, 2025
a0c4e90
ellipse
DomCR Mar 4, 2025
9a40f07
submodule
DomCR Mar 4, 2025
8f5b3bc
DimensionAngular2Line
DomCR Mar 4, 2025
98d9e9c
DimensionAngular3Pt
DomCR Mar 4, 2025
5e17730
DimensionDiameter
DomCR Mar 4, 2025
6471413
comment
DomCR Mar 5, 2025
bc5925e
DimensionOrdinate
DomCR Mar 5, 2025
3a1a4b5
radius
DomCR Mar 5, 2025
e650d2f
face3d n block
DomCR Mar 5, 2025
c42604b
polyline
DomCR Mar 5, 2025
22c4609
xline
DomCR Mar 5, 2025
31889c5
CadWipeoutBase
DomCR Mar 7, 2025
1ebca66
tolerance
DomCR Mar 7, 2025
094f366
spline n viewport
DomCR Mar 7, 2025
b30f393
spline
DomCR Mar 7, 2025
af0c8b9
solid
DomCR Mar 7, 2025
7825ec5
shape
DomCR Mar 7, 2025
04a6844
ray
DomCR Mar 7, 2025
4521757
submodule
DomCR Mar 13, 2025
90cdb9b
docs
DomCR Mar 13, 2025
2f935af
update
DomCR Mar 13, 2025
468aa51
leader
DomCR Mar 13, 2025
60e7356
docs
DomCR Mar 13, 2025
4347b9a
submodule
DomCR Apr 2, 2025
b2c68aa
merge
DomCR Apr 2, 2025
8207ad8
boundaries
DomCR Apr 2, 2025
8c727f7
merge
DomCR Apr 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 66 additions & 1 deletion src/ACadSharp.Tests/Entities/ArcTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace ACadSharp.Tests.Entities
{
public class ArcTests
public class ArcTests : CommonEntityTests<Arc>
{
[Fact]
public void CreateFromBulgeTest()
Expand Down Expand Up @@ -99,5 +99,70 @@ public void GetEndVerticesTest()
AssertUtils.AreEqual<XY>(start, s1, "start point");
AssertUtils.AreEqual<XY>(end, e2, "end point");
}

[Fact]
public void TranslationTest()
{
double radius = 5;
XYZ center = new XYZ(1, 1, 0);
Arc arc = new Arc
{
Radius = radius,
Center = center,
};

XYZ move = new XYZ(5, 5, 0);
Transform transform = Transform.CreateTranslation(move);
arc.ApplyTransform(transform);

AssertUtils.AreEqual(XYZ.AxisZ, arc.Normal);
AssertUtils.AreEqual(center.Add(move), arc.Center);
Assert.Equal(radius, arc.Radius);
Assert.Equal(0, arc.StartAngle);
Assert.Equal(Math.PI, arc.EndAngle);
}

[Fact]
public void RotationTest()
{
double radius = 5;
XYZ center = new XYZ(1, 1, 0);
Arc arc = new Arc
{
Radius = radius,
Center = center
};

Transform transform = Transform.CreateRotation(XYZ.AxisX, MathHelper.DegToRad(90));
arc.ApplyTransform(transform);

AssertUtils.AreEqual(new XYZ(1, 0, 1), arc.Center);
Assert.Equal(radius, arc.Radius);
Assert.Equal(Math.PI, arc.StartAngle);
Assert.Equal(0, arc.EndAngle);
AssertUtils.AreEqual(XYZ.AxisY, arc.Normal);
}

[Fact]
public void ScalingTest()
{
double radius = 5;
XYZ center = new XYZ(1, 1, 0);
Arc arc = new Arc
{
Radius = radius,
Center = center
};

XYZ scale = new XYZ(2, 2, 1);
Transform transform = Transform.CreateScaling(scale, center);
arc.ApplyTransform(transform);

AssertUtils.AreEqual(XYZ.AxisZ, arc.Normal);
AssertUtils.AreEqual(center, arc.Center);
Assert.Equal(10, arc.Radius);
Assert.Equal(0, arc.StartAngle);
Assert.Equal(Math.PI, arc.EndAngle);
}
}
}
64 changes: 63 additions & 1 deletion src/ACadSharp.Tests/Entities/CircleTests.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,73 @@
using ACadSharp.Entities;
using ACadSharp.Tests.Common;
using CSMath;
using Xunit;

namespace ACadSharp.Tests.Entities
{
public class CircleTests
public class CircleTests : CommonEntityTests<Circle>
{
private CSMathRandom _random = new CSMathRandom();

[Fact]
public void TranslationTest()
{
double radius = 5;
XYZ center = new XYZ(1, 1, 0);
Circle circle = new Circle
{
Radius = radius,
Center = center
};

XYZ move = new XYZ(5, 5, 0);
Transform transform = Transform.CreateTranslation(move);
circle.ApplyTransform(transform);

AssertUtils.AreEqual(XYZ.AxisZ, circle.Normal);
AssertUtils.AreEqual(center.Add(move), circle.Center);
Assert.Equal(radius, circle.Radius);
}

[Fact]
public void RotationTest()
{
double radius = 5;
XYZ center = new XYZ(1, 1, 0);
Circle circle = new Circle
{
Radius = radius,
Center = center
};

Transform transform = Transform.CreateRotation(XYZ.AxisX, MathHelper.DegToRad(90));
circle.ApplyTransform(transform);

AssertUtils.AreEqual(new XYZ(1, 0, 1), circle.Center);
Assert.Equal(radius, circle.Radius);
AssertUtils.AreEqual(XYZ.AxisY, circle.Normal);
}

[Fact]
public void ScalingTest()
{
double radius = 5;
XYZ center = new XYZ(1, 1, 0);
Circle circle = new Circle
{
Radius = radius,
Center = center
};

XYZ scale = new XYZ(2, 2, 1);
Transform transform = Transform.CreateScaling(scale, center);
circle.ApplyTransform(transform);

AssertUtils.AreEqual(XYZ.AxisZ, circle.Normal);
AssertUtils.AreEqual(center, circle.Center);
Assert.Equal(10, circle.Radius);
}

[Fact]
public void GetBoundingBoxTest()
{
Expand Down
25 changes: 25 additions & 0 deletions src/ACadSharp.Tests/Entities/CommonEntityTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using ACadSharp.Entities;
using Xunit;

namespace ACadSharp.Tests.Entities
{
public abstract class CommonEntityTests<T>
where T : Entity, new()
{
[Fact]
public void DefaultConstructor()
{
T entity = new T();

Assert.NotNull(entity);
Assert.True(0 == entity.Handle);

Assert.NotEqual(ObjectType.UNDEFINED, entity.ObjectType);

Assert.False(string.IsNullOrEmpty(entity.ObjectName));
Assert.False(string.IsNullOrEmpty(entity.SubclassMarker));

Assert.Null(entity.XDictionary);
}
}
}
84 changes: 83 additions & 1 deletion src/ACadSharp.Tests/Entities/LineTests.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,93 @@
using ACadSharp.Entities;
using ACadSharp.Tests.Common;
using CSMath;
using Xunit;

namespace ACadSharp.Tests.Entities
{
public class LineTests
public class LineTests : CommonEntityTests<Line>
{
private CSMathRandom _random = new CSMathRandom();

[Fact]
public void TranslationTest()
{
var start = XYZ.Zero;
var end = new XYZ(1, 1, 0);
Line line = new Line
{
StartPoint = start,
EndPoint = end,
};

XYZ move = new XYZ(5, 5, 0);
Transform transform = Transform.CreateTranslation(move);
line.ApplyTransform(transform);

AssertUtils.AreEqual(start.Add(move), line.StartPoint);
AssertUtils.AreEqual(end.Add(move), line.EndPoint);
AssertUtils.AreEqual(XYZ.AxisZ, line.Normal);
}

[Fact]
public void RotationTest()
{
var start = XYZ.Zero;
var end = new XYZ(1, 1, 0);
Line line = new Line
{
StartPoint = start,
EndPoint = end,
};

Transform translation = Transform.CreateRotation(XYZ.AxisX, MathHelper.DegToRad(90));
line.ApplyTransform(translation);

AssertUtils.AreEqual(start, line.StartPoint);
AssertUtils.AreEqual(new XYZ(1, 0, 1), line.EndPoint);
AssertUtils.AreEqual(XYZ.AxisY, line.Normal);
}

[Fact]
public void ScalingTest()
{
var start = new XYZ(-1, -1, 0);
var end = new XYZ(1, 1, 0);
Line line = new Line
{
StartPoint = start,
EndPoint = end,
};

XYZ scale = new XYZ(2, 2, 1);
Transform transform = Transform.CreateScaling(scale);
line.ApplyTransform(transform);

AssertUtils.AreEqual(start.Multiply(scale), line.StartPoint);
AssertUtils.AreEqual(end.Multiply(scale), line.EndPoint);
AssertUtils.AreEqual(XYZ.AxisZ, line.Normal);
}

[Fact]
public void RandomTranslationTest()
{
XYZ start = this._random.Next<XYZ>();
XYZ end = this._random.Next<XYZ>();
Line line = new Line
{
StartPoint = start,
EndPoint = end,
};

XYZ move = this._random.Next<XYZ>();
Transform translation = Transform.CreateTranslation(move);
line.ApplyTransform(translation);

AssertUtils.AreEqual(start.Add(move), line.StartPoint);
AssertUtils.AreEqual(end.Add(move), line.EndPoint);
}


[Fact]
public void GetBoundingBoxTest()
{
Expand Down
43 changes: 43 additions & 0 deletions src/ACadSharp.Tests/Entities/PointTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
using ACadSharp.Entities;
using ACadSharp.Tests.Common;
using CSMath;
using Xunit;

namespace ACadSharp.Tests.Entities
{
public class PointTests : CommonEntityTests<Point>
{
private CSMathRandom _random = new CSMathRandom();

[Fact]
public void TranslateTest()
{
XYZ init = _random.Next<XYZ>();
XYZ transform = _random.Next<XYZ>();
XYZ result = init + transform;

Point point = new Point(init);

point.ApplyTranslation(transform);

AssertUtils.AreEqual(result, point.Location, "Point Location");
AssertUtils.AreEqual(XYZ.AxisZ, point.Normal);
}


[Fact]
public void RotationTest()
{
XYZ init = new(5, 5, 0);

Point point = new Point(init);

Transform translation = Transform.CreateRotation(new XYZ(1, 0, 0), MathHelper.DegToRad(90));
point.ApplyTransform(translation);

//Rotation around origin
AssertUtils.AreEqual(new XYZ(5, 0, 5), point.Location, "Point Location");
AssertUtils.AreEqual(XYZ.AxisY, point.Normal);
}
}
}
10 changes: 9 additions & 1 deletion src/ACadSharp/Blocks/Block.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public Block(BlockRecord record) : base()

/// <inheritdoc/>
/// <remarks>
/// Cloning a block will also unatach it from the record
/// Cloning a block will also unattached it from the record.
/// </remarks>
public override CadObject Clone()
{
Expand All @@ -87,6 +87,14 @@ public override CadObject Clone()
return clone;
}

/// <inheritdoc/>
/// <remarks>
/// Block entities don't have any geometric properties.
/// </remarks>
public override void ApplyTransform(Transform transform)
{
}

/// <inheritdoc/>
public override BoundingBox GetBoundingBox()
{
Expand Down
5 changes: 5 additions & 0 deletions src/ACadSharp/Blocks/BlockEnd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,10 @@ public override BoundingBox GetBoundingBox()
{
return BoundingBox.Null;
}

/// <inheritdoc/>
public override void ApplyTransform(Transform transform)
{
}
}
}
Loading