Skip to content

Commit

Permalink
chore: update clang format settings
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwa2710 committed Aug 5, 2024
1 parent 51afadc commit 08ab617
Show file tree
Hide file tree
Showing 93 changed files with 592 additions and 594 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_2D_Intersection(pybind11::mod
{
using namespace pybind11;

using ostk::core::type::Unique;
using ostk::core::container::Array;
using ostk::core::type::Unique;

using ostk::mathematics::geometry::d2::Intersection;
using ostk::mathematics::geometry::d2::Object;
using ostk::mathematics::geometry::d2::object::Point;
using ostk::mathematics::geometry::d2::object::PointSet;
using ostk::mathematics::geometry::d2::object::Composite;
using ostk::mathematics::geometry::d2::object::Line;
using ostk::mathematics::geometry::d2::object::Segment;
using ostk::mathematics::geometry::d2::object::LineString;
using ostk::mathematics::geometry::d2::object::Point;
using ostk::mathematics::geometry::d2::object::PointSet;
using ostk::mathematics::geometry::d2::object::Polygon;
using ostk::mathematics::geometry::d2::object::Composite;
using ostk::mathematics::geometry::d2::Intersection;
using ostk::mathematics::geometry::d2::object::Segment;

class_<Intersection> intersection(aModule, "Intersection");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_2D_Object_Composite(pybind11:
{
using namespace pybind11;

using ostk::core::type::Shared;
using ostk::core::type::Real;
using ostk::core::type::Shared;

using ostk::mathematics::geometry::d2::Intersection;
using ostk::mathematics::geometry::d2::Object;
using ostk::mathematics::geometry::d2::object::Point;
using ostk::mathematics::geometry::d2::object::PointSet;
using ostk::mathematics::geometry::d2::object::Composite;
using ostk::mathematics::geometry::d2::object::Line;
using ostk::mathematics::geometry::d2::object::Segment;
using ostk::mathematics::geometry::d2::object::LineString;
using ostk::mathematics::geometry::d2::object::Point;
using ostk::mathematics::geometry::d2::object::PointSet;
using ostk::mathematics::geometry::d2::object::Polygon;
using ostk::mathematics::geometry::d2::object::Composite;
using ostk::mathematics::geometry::d2::Intersection;
using ostk::mathematics::geometry::d2::object::Segment;

class_<Composite, Object>(aModule, "Composite")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_2D_Object_Line(pybind11::modu

using ostk::core::type::Real;

using ostk::mathematics::object::Vector2d;
using ostk::mathematics::geometry::d2::Object;
using ostk::mathematics::geometry::d2::object::Line;
using ostk::mathematics::geometry::d2::object::Point;
using ostk::mathematics::geometry::d2::object::PointSet;
using ostk::mathematics::geometry::d2::object::Line;
using ostk::mathematics::object::Vector2d;

class_<Line, Object>(aModule, "Line")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_2D_Object_LineString(pybind11
{
using namespace pybind11;

using ostk::core::type::Integer;
using ostk::core::container::Array;
using ostk::core::type::Integer;

using ostk::mathematics::geometry::d2::Object;
using ostk::mathematics::geometry::d2::object::Point;
using ostk::mathematics::geometry::d2::object::LineString;
using ostk::mathematics::geometry::d2::object::Point;

class_<LineString, Object>(aModule, "LineString")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_2D_Object_MultiPolygon(pybind
{
using namespace pybind11;

using ostk::core::type::Integer;
using ostk::core::container::Array;
using ostk::core::type::Integer;

using ostk::mathematics::object::Vector2d;
using ostk::mathematics::geometry::d2::Object;
using ostk::mathematics::geometry::d2::object::MultiPolygon;
using ostk::mathematics::geometry::d2::object::Point;
using ostk::mathematics::geometry::d2::object::PointSet;
using ostk::mathematics::geometry::d2::object::Polygon;
using ostk::mathematics::geometry::d2::object::MultiPolygon;
using ostk::mathematics::object::Vector2d;

class_<MultiPolygon, Object>(aModule, "MultiPolygon")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_2D_Object_Point(pybind11::mod
using ostk::core::type::Integer;
using ostk::core::type::Real;

using ostk::mathematics::object::Vector2d;
using ostk::mathematics::geometry::d2::Object;
using ostk::mathematics::geometry::d2::object::Point;
using ostk::mathematics::object::Vector2d;

class_<Point, Object>(aModule, "Point")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_2D_Object_PointSet(pybind11::
{
using namespace pybind11;

using ostk::core::type::Integer;
using ostk::core::container::Array;
using ostk::core::type::Integer;

using ostk::mathematics::geometry::d2::Object;
using ostk::mathematics::geometry::d2::object::Point;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_2D_Object_Polygon(pybind11::m
{
using namespace pybind11;

using ostk::core::type::Integer;
using ostk::core::container::Array;
using ostk::core::type::Integer;

using ostk::mathematics::object::Vector2d;
using ostk::mathematics::geometry::d2::Object;
using ostk::mathematics::geometry::d2::object::Point;
using ostk::mathematics::geometry::d2::object::PointSet;
using ostk::mathematics::geometry::d2::object::Polygon;
using ostk::mathematics::object::Vector2d;

class_<Polygon, Object>(aModule, "Polygon")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_2D_Transformation(pybind11::m
{
using namespace pybind11;

using ostk::mathematics::object::Vector2d;
using ostk::mathematics::object::Matrix3d;
using ostk::mathematics::geometry::d2::Transformation;
using ostk::mathematics::geometry::d2::object::Point;
using ostk::mathematics::geometry::d2::Transformation;
using ostk::mathematics::object::Matrix3d;
using ostk::mathematics::object::Vector2d;

class_<Transformation> transf(aModule, "Transformation");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_3D_Intersection(pybind11::mod
{
using namespace pybind11;

using ostk::core::type::Unique;
using ostk::core::container::Array;
using ostk::core::type::Unique;

using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::geometry::d3::Object;
using ostk::mathematics::geometry::d3::object::Composite;
using ostk::mathematics::geometry::d3::object::Cuboid;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::LineString;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Point;
using ostk::mathematics::geometry::d3::object::PointSet;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Polygon;
using ostk::mathematics::geometry::d3::object::Pyramid;
using ostk::mathematics::geometry::d3::object::Ray;
using ostk::mathematics::geometry::d3::object::Segment;
using ostk::mathematics::geometry::d3::object::LineString;
using ostk::mathematics::geometry::d3::object::Polygon;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Sphere;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::object::Cuboid;
using ostk::mathematics::geometry::d3::object::Pyramid;
using ostk::mathematics::geometry::d3::object::Composite;
using ostk::mathematics::geometry::d3::Intersection;

// scope in_Intersection = class_<Intersection>("Intersection", init<const Array<Unique<Object>>>())
class_<Intersection> intersection(aModule, "Intersection");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_3D_Object(pybind11::module& a
using namespace pybind11;

using ostk::mathematics::geometry::d3::Object;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::LineString;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Point;
using ostk::mathematics::geometry::d3::object::PointSet;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Polygon;
using ostk::mathematics::geometry::d3::object::Pyramid;
using ostk::mathematics::geometry::d3::object::Ray;
using ostk::mathematics::geometry::d3::object::Segment;
using ostk::mathematics::geometry::d3::object::LineString;
using ostk::mathematics::geometry::d3::object::Polygon;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Sphere;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::object::Pyramid;

// class_<Object, boost::noncopyable>("Object", no_init)
class_<Object>(aModule, "Object")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_3D_Object_Composite(pybind11:
{
using namespace pybind11;

using ostk::core::type::Shared;
using ostk::core::type::Real;
using ostk::core::type::Shared;

using ostk::mathematics::object::Vector3d;
using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::geometry::d3::Object;
using ostk::mathematics::geometry::d3::object::Composite;
using ostk::mathematics::geometry::d3::object::Cone;
using ostk::mathematics::geometry::d3::object::Cuboid;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::LineString;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Point;
using ostk::mathematics::geometry::d3::object::PointSet;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Polygon;
using ostk::mathematics::geometry::d3::object::Pyramid;
using ostk::mathematics::geometry::d3::object::Ray;
using ostk::mathematics::geometry::d3::object::Segment;
using ostk::mathematics::geometry::d3::object::LineString;
using ostk::mathematics::geometry::d3::object::Polygon;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Sphere;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::object::Cuboid;
using ostk::mathematics::geometry::d3::object::Pyramid;
using ostk::mathematics::geometry::d3::object::Cone;
using ostk::mathematics::geometry::d3::object::Composite;
using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::geometry::d3::transformation::rotation::Quaternion;
using ostk::mathematics::object::Vector3d;

class_<Composite, Object>(aModule, "Composite")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,23 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_3D_Object_Cone(pybind11::modu
{
using namespace pybind11;

using ostk::core::type::Size;
using ostk::core::type::Real;
using ostk::core::type::Size;

using ostk::mathematics::object::Vector3d;
using ostk::mathematics::geometry::Angle;
using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::geometry::d3::Object;
using ostk::mathematics::geometry::d3::object::Cone;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Point;
using ostk::mathematics::geometry::d3::object::PointSet;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Polygon;
using ostk::mathematics::geometry::d3::object::Ray;
using ostk::mathematics::geometry::d3::object::Segment;
using ostk::mathematics::geometry::d3::object::Ray;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Polygon;
using ostk::mathematics::geometry::d3::object::Sphere;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::object::Cone;
using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::object::Vector3d;

class_<Cone, Object>(aModule, "Cone")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_3D_Object_Cuboid(pybind11::mo

using ostk::core::type::Real;

using ostk::mathematics::object::Vector3d;
using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::geometry::d3::Object;
using ostk::mathematics::geometry::d3::object::Cuboid;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Point;
using ostk::mathematics::geometry::d3::object::PointSet;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Pyramid;
using ostk::mathematics::geometry::d3::object::Ray;
using ostk::mathematics::geometry::d3::object::Segment;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Sphere;
using ostk::mathematics::geometry::d3::object::Cuboid;
using ostk::mathematics::geometry::d3::object::Pyramid;
using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::geometry::d3::transformation::rotation::Quaternion;
using ostk::mathematics::object::Vector3d;

// scope in_Cuboid = class_<Cuboid, Shared<Cuboid>, bases<Object>>("Cuboid", no_init)
class_<Cuboid, Object>(aModule, "Cuboid")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_3D_Object_Ellipsoid(pybind11:

using ostk::core::type::Real;

using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::geometry::d3::Object;
using ostk::mathematics::geometry::d3::object::Cone;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Point;
using ostk::mathematics::geometry::d3::object::PointSet;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Pyramid;
using ostk::mathematics::geometry::d3::object::Ray;
using ostk::mathematics::geometry::d3::object::Segment;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Sphere;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::object::Pyramid;
using ostk::mathematics::geometry::d3::object::Cone;
using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::geometry::d3::transformation::rotation::Quaternion;

class_<Ellipsoid, Object>(aModule, "Ellipsoid")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_3D_Object_Line(pybind11::modu

using ostk::core::type::Real;

using ostk::mathematics::object::Vector3d;
using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::geometry::d3::Object;
using ostk::mathematics::geometry::d3::object::Point;
using ostk::mathematics::geometry::d3::object::PointSet;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Point;
using ostk::mathematics::geometry::d3::object::PointSet;
using ostk::mathematics::geometry::d3::object::Sphere;
using ostk::mathematics::geometry::d3::object::Ellipsoid;
using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::object::Vector3d;

class_<Line, Object>(aModule, "Line")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_3D_Object_LineString(pybind11
using ostk::core::container::Array;

using ostk::mathematics::geometry::d3::Object;
using ostk::mathematics::geometry::d3::object::Point;
using ostk::mathematics::geometry::d3::object::LineString;
using ostk::mathematics::geometry::d3::object::Point;

class_<LineString, Object>(aModule, "LineString")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_3D_Object_Plane(pybind11::mod
{
using namespace pybind11;

using ostk::mathematics::object::Vector3d;
using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::geometry::d3::Object;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Point;
using ostk::mathematics::geometry::d3::object::PointSet;
using ostk::mathematics::geometry::d3::object::Plane;
using ostk::mathematics::geometry::d3::object::Line;
using ostk::mathematics::geometry::d3::object::Ray;
using ostk::mathematics::geometry::d3::object::Segment;
using ostk::mathematics::geometry::d3::Intersection;
using ostk::mathematics::object::Vector3d;

class_<Plane, Object>(aModule, "Plane")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ inline void OpenSpaceToolkitMathematicsPy_Geometry_3D_Object_Point(pybind11::mod
{
using namespace pybind11;

using ostk::core::type::Shared;
using ostk::core::type::Integer;
using ostk::core::type::Real;
using ostk::core::type::Shared;

using ostk::mathematics::object::Vector3d;
using ostk::mathematics::geometry::d3::Object;
using ostk::mathematics::geometry::d3::object::Point;
using ostk::mathematics::object::Vector3d;

class_<Point, Object>(aModule, "Point")

Expand Down
Loading

0 comments on commit 08ab617

Please sign in to comment.