diff --git a/Packages/Cartesian_kernel/changes.txt b/Packages/Cartesian_kernel/changes.txt index 82508258071..dd1c00812a9 100644 --- a/Packages/Cartesian_kernel/changes.txt +++ b/Packages/Cartesian_kernel/changes.txt @@ -1,3 +1,6 @@ +Version 6.32 (8 October 2001) +- Make BCC happy. + Version 6.31 (5 October 2001) - Remove cartesian_classes.h. - Move #include to [Simple_]Cartesian.h diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Iso_rectangle_2.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Iso_rectangle_2.h index 417ba95876f..2f29428f40f 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Iso_rectangle_2.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Iso_rectangle_2.h @@ -89,7 +89,7 @@ public: { // FIXME : We need a precondition like this!!! // CGAL_kernel_precondition(t.is_axis_preserving()); - return Iso_rectangleC2(t.transform(vertex(0)), t.transform(vertex(2))); + return Iso_rectangleC2(t.transform(vertex(0)), t.transform(vertex(2))); } Bounded_side bounded_side(const Point_2 &p) const; diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Line_3.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Line_3.h index 97f4ac8f43a..ac2c809ca00 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Line_3.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Line_3.h @@ -85,7 +85,7 @@ public: LineC3 transform(const Aff_transformation_3 &t) const { - return LineC3(t.transform(point()), t.transform(direction())); + return LineC3(t.transform(point()), t.transform(direction())); } }; diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Plane_3.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Plane_3.h index 8782b5c746a..41b363d524d 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Plane_3.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Plane_3.h @@ -109,10 +109,10 @@ public: PlaneC3 transform(const Aff_transformation_3 &t) const { if (t.is_even()) - return PlaneC3(t.transform(point()), + return PlaneC3(t.transform(point()), t.transpose().inverse().transform(orthogonal_direction())); else - return PlaneC3( t.transform(point()), + return PlaneC3( t.transform(point()), - t.transpose().inverse().transform(orthogonal_direction())); } diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Ray_2.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Ray_2.h index 89f0634eecf..b989e7d755e 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Ray_2.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Ray_2.h @@ -70,7 +70,7 @@ public: RayC2 transform(const Aff_transformation_2 &t) const { - return RayC2(t.transform(source()), t.transform(second_point())); + return RayC2(t.transform(source()), t.transform(second_point())); } bool is_horizontal() const; diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Ray_3.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Ray_3.h index 1f68d93380e..1185011aec4 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Ray_3.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Ray_3.h @@ -70,7 +70,7 @@ public: RayC3 transform(const Aff_transformation_3 &t) const { - return RayC3(t.transform(source()), t.transform(second_point())); + return RayC3(t.transform(source()), t.transform(second_point())); } bool is_degenerate() const; diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Segment_2.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Segment_2.h index 3cc1aac05ca..c93465ccb22 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Segment_2.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Segment_2.h @@ -83,7 +83,7 @@ public: SegmentC2 opposite() const; SegmentC2 transform(const Aff_transformation_2 &t) const { - return SegmentC2(t.transform(source()), t.transform(target())); + return SegmentC2(t.transform(source()), t.transform(target())); } bool is_degenerate() const; diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Segment_3.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Segment_3.h index 46e85d2e2b4..88c4b192de8 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Segment_3.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Segment_3.h @@ -78,7 +78,7 @@ public: SegmentC3 opposite() const; SegmentC3 transform(const Aff_transformation_3 &t) const { - return SegmentC3(t.transform(source()), t.transform(target())); + return SegmentC3(t.transform(source()), t.transform(target())); } bool is_degenerate() const; diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Tetrahedron_3.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Tetrahedron_3.h index 8a9664aa82b..59338f09550 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Tetrahedron_3.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Tetrahedron_3.h @@ -61,7 +61,7 @@ public: TetrahedronC3 transform(const Aff_transformation_3 &t) const { - return TetrahedronC3(t.transform(vertex(0)), + return TetrahedronC3(t.transform(vertex(0)), t.transform(vertex(1)), t.transform(vertex(2)), t.transform(vertex(3))); diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Triangle_2.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Triangle_2.h index 224bfe509e1..6692889dc95 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Triangle_2.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Triangle_2.h @@ -57,7 +57,7 @@ public: TriangleC2 opposite() const; TriangleC2 transform(const Aff_transformation_2 &t) const { - return TriangleC2(t.transform(vertex(0)), + return TriangleC2(t.transform(vertex(0)), t.transform(vertex(1)), t.transform(vertex(2))); } diff --git a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Triangle_3.h b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Triangle_3.h index aaed531e16a..a8a0d3c2f1f 100644 --- a/Packages/Cartesian_kernel/include/CGAL/Cartesian/Triangle_3.h +++ b/Packages/Cartesian_kernel/include/CGAL/Cartesian/Triangle_3.h @@ -54,7 +54,7 @@ public: TriangleC3 transform(const Aff_transformation_3 &t) const { - return TriangleC3(t.transform(vertex(0)), + return TriangleC3(t.transform(vertex(0)), t.transform(vertex(1)), t.transform(vertex(2))); }