-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
testing equality between transformations works just fine, but not when we test for two SequentialTransform. Using Meshes for the example:
t1 = Meshes.Affine([-0.1 8.7 0.5; -1.5 -0.1 4.3; 0.1 1.9 0.0], [0.0, 0.0, 0.0]) → Meshes.Translate(0.0, 0.0, 0.0)
t2 = Meshes.Affine([-0.1 8.7 0.5; -1.5 -0.1 4.3; 0.1 1.9 0.0], [0.0, 0.0, 0.0]) → Meshes.Translate(0.0, 0.0, 0.0)
t1 == t2But if we do this it works:
t1.transforms == t2.transformsWould it be possible to add a method for Base for testing equality like this?
juliohm
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed