Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenlib/intern/mesh_intersect.cc')
-rw-r--r--source/blender/blenlib/intern/mesh_intersect.cc19
1 files changed, 8 insertions, 11 deletions
diff --git a/source/blender/blenlib/intern/mesh_intersect.cc b/source/blender/blenlib/intern/mesh_intersect.cc
index 04f86734b8a..b2b8dd4e900 100644
--- a/source/blender/blenlib/intern/mesh_intersect.cc
+++ b/source/blender/blenlib/intern/mesh_intersect.cc
@@ -1055,25 +1055,22 @@ static std::ostream &operator<<(std::ostream &os, const CoplanarClusterInfo &cli
enum ITT_value_kind { INONE, IPOINT, ISEGMENT, ICOPLANAR };
struct ITT_value {
- mpq3 p1; /* Only relevant for IPOINT and ISEGMENT kind. */
- mpq3 p2; /* Only relevant for ISEGMENT kind. */
- int t_source; /* Index of the source triangle that intersected the target one. */
- enum ITT_value_kind kind;
+ mpq3 p1; /* Only relevant for IPOINT and ISEGMENT kind. */
+ mpq3 p2; /* Only relevant for ISEGMENT kind. */
+ int t_source = -1; /* Index of the source triangle that intersected the target one. */
+ enum ITT_value_kind kind = INONE;
- ITT_value() : t_source(-1), kind(INONE)
- {
- }
- ITT_value(ITT_value_kind k) : t_source(-1), kind(k)
+ ITT_value() = default;
+ explicit ITT_value(ITT_value_kind k) : kind(k)
{
}
ITT_value(ITT_value_kind k, int tsrc) : t_source(tsrc), kind(k)
{
}
- ITT_value(ITT_value_kind k, const mpq3 &p1) : p1(p1), t_source(-1), kind(k)
+ ITT_value(ITT_value_kind k, const mpq3 &p1) : p1(p1), kind(k)
{
}
- ITT_value(ITT_value_kind k, const mpq3 &p1, const mpq3 &p2)
- : p1(p1), p2(p2), t_source(-1), kind(k)
+ ITT_value(ITT_value_kind k, const mpq3 &p1, const mpq3 &p2) : p1(p1), p2(p2), kind(k)
{
}
ITT_value(const ITT_value &other)