[WIP] stripe-pattern is now ok.

This commit is contained in:
NADAL Jean-Baptiste
2024-02-29 18:39:45 +01:00
parent 5e540a995b
commit 0576ccaccb
19 changed files with 192 additions and 56 deletions

View File

@@ -242,7 +242,7 @@ SCENARIO("An intersection encapsulates t and object", "[features/intersections.f
}
AND_THEN("i.object = s")
{
REQUIRE(i.object() == s);
REQUIRE(*i.object() == s);
}
}
}
@@ -270,7 +270,7 @@ SCENARIO("An intersection could be affected", "[features/intersections.feature]"
}
AND_THEN("i2.object = s")
{
REQUIRE(i2.object() == s);
REQUIRE(*i2.object() == s);
}
}
}
@@ -403,11 +403,11 @@ SCENARIO("Intersect sets the object on the intersection", "[features/spheres.fea
}
AND_THEN("xs[0].object = s")
{
REQUIRE(xs[0].object() == s);
REQUIRE(*xs[0].object() == s);
}
AND_THEN("xs[1].object = s")
{
REQUIRE(xs[1].object() == s);
REQUIRE(*xs[1].object() == s);
}
}
}