STYLE: return type on triFace::area
This commit is contained in:
parent
9153534a9d
commit
1d4fdf1b9f
@ -115,7 +115,7 @@ public:
|
||||
inline point centre(const pointField&) const;
|
||||
|
||||
//- Area, optionally return centre point as well
|
||||
inline point area
|
||||
inline vector area
|
||||
(
|
||||
const pointField&,
|
||||
point& centrePt = *reinterpret_cast<point*>(0)
|
||||
|
@ -171,7 +171,7 @@ inline Foam::point Foam::triFace::centre(const pointField& points) const
|
||||
}
|
||||
|
||||
|
||||
inline Foam::point Foam::triFace::area
|
||||
inline Foam::vector Foam::triFace::area
|
||||
(
|
||||
const pointField& points,
|
||||
point& centrePt
|
||||
@ -183,15 +183,7 @@ inline Foam::point Foam::triFace::area
|
||||
centrePt = this->centre(points);
|
||||
}
|
||||
|
||||
return
|
||||
(
|
||||
0.5
|
||||
*
|
||||
(
|
||||
(points[operator[](1)] - points[operator[](0)])
|
||||
^ (points[operator[](2)] - points[operator[](0)])
|
||||
)
|
||||
);
|
||||
return this->normal(points);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user