Skip to content

Commit e9b313b

Browse files
committed
revert autoformatting
1 parent af00cc2 commit e9b313b

File tree

91 files changed

+3080
-3080
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+3080
-3080
lines changed

include/fcl/broadphase/broadphase_SSaP-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

include/fcl/broadphase/broadphase_SSaP.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

@@ -44,7 +44,7 @@
4444
namespace fcl
4545
{
4646

47-
/// @brief Simple SAP collision manager
47+
/// @brief Simple SAP collision manager
4848
template <typename S>
4949
class SSaPCollisionManager : public BroadPhaseCollisionManager<S>
5050
{
@@ -89,21 +89,21 @@ class SSaPCollisionManager : public BroadPhaseCollisionManager<S>
8989

9090
/// @brief whether the manager is empty
9191
bool empty() const;
92-
92+
9393
/// @brief the number of objects managed by the manager
9494
size_t size() const;
9595

9696
protected:
9797
/// @brief check collision between one object and a list of objects, return value is whether stop is possible
9898
bool checkColl(typename std::vector<CollisionObject<S>*>::const_iterator pos_start, typename std::vector<CollisionObject<S>*>::const_iterator pos_end,
9999
CollisionObject<S>* obj, void* cdata, CollisionCallBack<S> callback) const;
100-
100+
101101
/// @brief check distance between one object and a list of objects, return value is whether stop is possible
102102
bool checkDis(typename std::vector<CollisionObject<S>*>::const_iterator pos_start, typename std::vector<CollisionObject<S>*>::const_iterator pos_end,
103103
CollisionObject<S>* obj, void* cdata, DistanceCallBack<S> callback, S& min_dist) const;
104104

105105
bool collide_(CollisionObject<S>* obj, void* cdata, CollisionCallBack<S> callback) const;
106-
106+
107107
bool distance_(CollisionObject<S>* obj, void* cdata, DistanceCallBack<S> callback, S& min_dist) const;
108108

109109
static size_t selectOptimalAxis(

include/fcl/broadphase/broadphase_SaP-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

include/fcl/broadphase/broadphase_SaP.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

@@ -103,7 +103,7 @@ class SaPCollisionManager : public BroadPhaseCollisionManager<S>
103103

104104
/// @brief whether the manager is empty
105105
bool empty() const;
106-
106+
107107
/// @brief the number of objects managed by the manager
108108
size_t size() const;
109109

@@ -130,7 +130,7 @@ class SaPCollisionManager : public BroadPhaseCollisionManager<S>
130130

131131
/// @brief End point list for x, y, z coordinates
132132
EndPoint* elist[3];
133-
133+
134134
/// @brief vector version of elist, for acceleration
135135
std::vector<EndPoint*> velist[3];
136136

include/fcl/broadphase/broadphase_bruteforce-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

include/fcl/broadphase/broadphase_bruteforce.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

@@ -92,7 +92,7 @@ class NaiveCollisionManager : public BroadPhaseCollisionManager<S>
9292

9393
/// @brief whether the manager is empty
9494
bool empty() const;
95-
95+
9696
/// @brief the number of objects managed by the manager
9797
size_t size() const;
9898

include/fcl/broadphase/broadphase_collision_manager.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

@@ -117,7 +117,7 @@ class BroadPhaseCollisionManager
117117

118118
/// @brief whether the manager is empty
119119
virtual bool empty() const = 0;
120-
120+
121121
/// @brief the number of objects managed by the manager
122122
virtual size_t size() const = 0;
123123

include/fcl/broadphase/broadphase_continuous_collision_manager.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

@@ -117,7 +117,7 @@ class BroadPhaseContinuousCollisionManager
117117

118118
/// @brief whether the manager is empty
119119
virtual bool empty() const = 0;
120-
120+
121121
/// @brief the number of objects managed by the manager
122122
virtual size_t size() const = 0;
123123
};

include/fcl/broadphase/broadphase_dynamic_AABB_tree-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

include/fcl/broadphase/broadphase_dynamic_AABB_tree.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

@@ -71,7 +71,7 @@ class DynamicAABBTreeCollisionManager : public BroadPhaseCollisionManager<S>
7171

7272
/// @brief add objects to the manager
7373
void registerObjects(const std::vector<CollisionObject<S>*>& other_objs);
74-
74+
7575
/// @brief add one object to the manager
7676
void registerObject(CollisionObject<S>* obj);
7777

@@ -113,10 +113,10 @@ class DynamicAABBTreeCollisionManager : public BroadPhaseCollisionManager<S>
113113

114114
/// @brief perform distance test with objects belonging to another manager
115115
void distance(BroadPhaseCollisionManager<S>* other_manager_, void* cdata, DistanceCallBack<S> callback) const;
116-
116+
117117
/// @brief whether the manager is empty
118118
bool empty() const;
119-
119+
120120
/// @brief the number of objects managed by the manager
121121
size_t size() const;
122122

include/fcl/broadphase/broadphase_dynamic_AABB_tree_array-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

include/fcl/broadphase/broadphase_dynamic_AABB_tree_array.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

@@ -67,12 +67,12 @@ class DynamicAABBTreeCollisionManager_Array : public BroadPhaseCollisionManager<
6767

6868
bool octree_as_geometry_collide;
6969
bool octree_as_geometry_distance;
70-
70+
7171
DynamicAABBTreeCollisionManager_Array();
7272

7373
/// @brief add objects to the manager
7474
void registerObjects(const std::vector<CollisionObject<S>*>& other_objs);
75-
75+
7676
/// @brief add one object to the manager
7777
void registerObject(CollisionObject<S>* obj);
7878

@@ -114,10 +114,10 @@ class DynamicAABBTreeCollisionManager_Array : public BroadPhaseCollisionManager<
114114

115115
/// @brief perform distance test with objects belonging to another manager
116116
void distance(BroadPhaseCollisionManager<S>* other_manager_, void* cdata, DistanceCallBack<S> callback) const;
117-
117+
118118
/// @brief whether the manager is empty
119119
bool empty() const;
120-
120+
121121
/// @brief the number of objects managed by the manager
122122
size_t size() const;
123123

include/fcl/broadphase/broadphase_interval_tree-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

include/fcl/broadphase/broadphase_interval_tree.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

@@ -99,7 +99,7 @@ class IntervalTreeCollisionManager : public BroadPhaseCollisionManager<S>
9999

100100
/// @brief whether the manager is empty
101101
bool empty() const;
102-
102+
103103
/// @brief the number of objects managed by the manager
104104
size_t size() const;
105105

include/fcl/broadphase/broadphase_spatialhash-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

include/fcl/broadphase/broadphase_spatialhash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3232
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
34-
*/
34+
*/
3535

3636
/** @author Jia Pan */
3737

0 commit comments

Comments
 (0)