File size: 18,050 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 | // SPDX-License-Identifier: LGPL-2.1-or-later
/***************************************************************************
* Copyright (c) Jürgen Riegel <juergen.riegel@web.de> *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#ifndef MESH_MESH_H
#define MESH_MESH_H
#include <list>
#include <map>
#include <set>
#include <string>
#include <vector>
#include <App/ComplexGeoData.h>
#include <App/PropertyGeo.h>
#include <Base/Matrix.h>
#include <Base/Tools3D.h>
#include "Core/Iterator.h"
#include "Core/MeshIO.h"
#include "Core/MeshKernel.h"
#include "Facet.h"
#include "MeshPoint.h"
#include "Segment.h"
namespace Py
{
class List;
}
namespace Base
{
class Polygon2d;
class ViewProjMethod;
} // namespace Base
namespace MeshCore
{
class AbstractPolygonTriangulator;
}
namespace Mesh
{
class MeshObject;
class MeshExport MeshSegment: public Data::Segment
{
TYPESYSTEM_HEADER_WITH_OVERRIDE();
public:
std::string getName() const override
{
return "MeshSegment";
}
Base::Reference<MeshObject> mesh;
std::unique_ptr<Mesh::Segment> segment;
};
/**
* The MeshObject class provides an interface for the underlying MeshKernel class and
* most of its algorithm on it.
* @note Each instance of MeshObject has its own instance of a MeshKernel so it's not possible
* that several instances of MeshObject manage one instance of MeshKernel.
*/
class MeshExport MeshObject: public Data::ComplexGeoData
{
TYPESYSTEM_HEADER_WITH_OVERRIDE();
public:
enum GeometryType
{
PLANE,
CYLINDER,
SPHERE
};
enum CutType
{
INNER,
OUTER
};
using TFacePair = std::pair<FacetIndex, FacetIndex>;
using TFacePairs = std::vector<TFacePair>;
// type def needed for cross-section
using TPlane = std::pair<Base::Vector3f, Base::Vector3f>;
using TPolylines = std::list<std::vector<Base::Vector3f>>;
using TRay = std::pair<Base::Vector3d, Base::Vector3d>;
using TFaceSection = std::pair<FacetIndex, Base::Vector3d>;
MeshObject();
explicit MeshObject(const MeshCore::MeshKernel& Kernel);
explicit MeshObject(const MeshCore::MeshKernel& Kernel, const Base::Matrix4D& Mtrx);
MeshObject(const MeshObject&);
MeshObject(MeshObject&&);
~MeshObject() override;
MeshObject& operator=(const MeshObject&);
MeshObject& operator=(MeshObject&&);
/** @name Subelement management */
//@{
/** Sub type list
* List of different subelement types
* its NOT a list of the subelements itself
*/
std::vector<const char*> getElementTypes() const override;
unsigned long countSubElements(const char* Type) const override;
/// get the subelement by type and number
Data::Segment* getSubElement(const char* Type, unsigned long) const override;
/** Get faces from segment */
void getFacesFromSubElement(
const Data::Segment*,
std::vector<Base::Vector3d>& Points,
std::vector<Base::Vector3d>& PointNormals,
std::vector<Facet>& faces
) const override;
//@}
void setTransform(const Base::Matrix4D& rclTrf) override;
Base::Matrix4D getTransform() const override;
void transformGeometry(const Base::Matrix4D& rclMat) override;
/**
* Swaps the content of \a Kernel and the internal mesh kernel.
*/
void swap(MeshCore::MeshKernel& Kernel);
void swap(MeshObject& mesh);
/** @name Querying */
//@{
std::string representation() const;
std::string topologyInfo() const;
unsigned long countPoints() const;
unsigned long countFacets() const;
unsigned long countEdges() const;
unsigned long countSegments() const;
bool isSolid() const;
Base::Vector3d getPoint(PointIndex) const;
MeshPoint getMeshPoint(PointIndex) const;
Mesh::Facet getMeshFacet(FacetIndex) const;
double getSurface() const;
double getVolume() const;
/** Get points from object with given accuracy */
void getPoints(
std::vector<Base::Vector3d>& Points,
std::vector<Base::Vector3d>& Normals,
double Accuracy,
uint16_t flags = 0
) const override;
void getFaces(
std::vector<Base::Vector3d>& Points,
std::vector<Facet>& Topo,
double Accuracy,
uint16_t flags = 0
) const override;
std::vector<PointIndex> getPointsFromFacets(const std::vector<FacetIndex>& facets) const;
bool nearestFacetOnRay(const TRay& ray, double maxAngle, TFaceSection& output) const;
std::vector<TFaceSection> foraminate(const TRay& ray, double maxAngle) const;
//@}
void setKernel(const MeshCore::MeshKernel& m);
MeshCore::MeshKernel& getKernel()
{
return _kernel;
}
const MeshCore::MeshKernel& getKernel() const
{
return _kernel;
}
Base::BoundBox3d getBoundBox() const override;
bool getCenterOfGravity(Base::Vector3d& center) const override;
/** @name I/O */
//@{
// Implemented from Persistence
unsigned int getMemSize() const override;
void Save(Base::Writer& writer) const override;
void SaveDocFile(Base::Writer& writer) const override;
void Restore(Base::XMLReader& reader) override;
void RestoreDocFile(Base::Reader& reader) override;
void save(
const char* file,
MeshCore::MeshIO::Format f = MeshCore::MeshIO::Undefined,
const MeshCore::Material* mat = nullptr,
const char* objectname = nullptr
) const;
void save(
std::ostream&,
MeshCore::MeshIO::Format f,
const MeshCore::Material* mat = nullptr,
const char* objectname = nullptr
) const;
bool load(const char* file, MeshCore::Material* mat = nullptr);
bool load(std::istream&, MeshCore::MeshIO::Format f, MeshCore::Material* mat = nullptr);
// Save and load in internal format
void save(std::ostream&) const;
void load(std::istream&);
void writeInventor(std::ostream& str, float creaseangle = 0.0F) const;
//@}
/** @name Manipulation */
//@{
void addFacet(const MeshCore::MeshGeomFacet& facet);
void addFacets(const std::vector<MeshCore::MeshGeomFacet>& facets);
void addFacets(const std::vector<MeshCore::MeshFacet>& facets, bool checkManifolds);
void addFacets(
const std::vector<MeshCore::MeshFacet>& facets,
const std::vector<Base::Vector3f>& points,
bool checkManifolds
);
void addFacets(
const std::vector<Data::ComplexGeoData::Facet>& facets,
const std::vector<Base::Vector3d>& points,
bool checkManifolds
);
void setFacets(const std::vector<MeshCore::MeshGeomFacet>& facets);
void setFacets(
const std::vector<Data::ComplexGeoData::Facet>& facets,
const std::vector<Base::Vector3d>& points
);
/**
* Combines two independent mesh objects.
* @note The mesh object we want to add must not overlap or intersect with
* this mesh object.
*/
void addMesh(const MeshObject&);
/**
* Combines two independent mesh objects.
* @note The mesh object we want to add must not overlap or intersect with
* this mesh object.
*/
void addMesh(const MeshCore::MeshKernel&);
void deleteFacets(const std::vector<FacetIndex>& removeIndices);
void deletePoints(const std::vector<PointIndex>& removeIndices);
std::vector<std::vector<FacetIndex>> getComponents() const;
unsigned long countComponents() const;
void removeComponents(unsigned long);
/**
* Checks for the given facet indices what will be the degree for each point
* when these facets are removed from the mesh kernel.
* The point degree information is stored in \a point_degree. The return value
* gives the number of points which will have a degree of zero.
*/
unsigned long getPointDegree(
const std::vector<FacetIndex>& indices,
std::vector<PointIndex>& point_degree
) const;
void fillupHoles(unsigned long, int, MeshCore::AbstractPolygonTriangulator&);
void offset(float fSize);
void offsetSpecial2(float fSize);
void offsetSpecial(float fSize, float zmax, float zmin);
/// clears the Mesh
void clear();
void transformToEigenSystem();
Base::Matrix4D getEigenSystem(Base::Vector3d& v) const;
void movePoint(PointIndex, const Base::Vector3d& v);
void setPoint(PointIndex index, const Base::Vector3d& p);
void smooth(int iterations, float d_max);
void decimate(float fTolerance, float fReduction);
void decimate(int targetSize);
Base::Vector3d getPointNormal(PointIndex) const;
std::vector<Base::Vector3d> getPointNormals() const;
void crossSections(
const std::vector<TPlane>&,
std::vector<TPolylines>& sections,
float fMinEps = 1.0e-2F,
bool bConnectPolygons = false
) const;
void cut(const Base::Polygon2d& polygon, const Base::ViewProjMethod& proj, CutType);
void trim(const Base::Polygon2d& polygon, const Base::ViewProjMethod& proj, CutType);
void trimByPlane(const Base::Vector3f& base, const Base::Vector3f& normal);
//@}
/** @name Selection */
//@{
void deleteSelectedFacets();
void deleteSelectedPoints();
void addFacetsToSelection(const std::vector<FacetIndex>&) const;
void addPointsToSelection(const std::vector<PointIndex>&) const;
void removeFacetsFromSelection(const std::vector<FacetIndex>&) const;
void removePointsFromSelection(const std::vector<PointIndex>&) const;
unsigned long countSelectedFacets() const;
bool hasSelectedFacets() const;
unsigned long countSelectedPoints() const;
bool hasSelectedPoints() const;
void getFacetsFromSelection(std::vector<FacetIndex>&) const;
void getPointsFromSelection(std::vector<PointIndex>&) const;
void clearFacetSelection() const;
void clearPointSelection() const;
//@}
/** @name Boolean operations */
//@{
MeshObject* unite(const MeshObject&) const;
MeshObject* intersect(const MeshObject&) const;
MeshObject* subtract(const MeshObject&) const;
MeshObject* inner(const MeshObject&) const;
MeshObject* outer(const MeshObject&) const;
std::vector<std::vector<Base::Vector3f>> section(
const MeshObject&,
bool connectLines,
float fMinDist
) const;
//@}
/** @name Topological operations */
//@{
void refine();
void removeNeedles(float);
void optimizeTopology(float);
void optimizeEdges();
void splitEdges();
void splitEdge(FacetIndex, FacetIndex, const Base::Vector3f&);
void splitFacet(FacetIndex, const Base::Vector3f&, const Base::Vector3f&);
void swapEdge(FacetIndex, FacetIndex);
void collapseEdge(FacetIndex, FacetIndex);
void collapseFacet(FacetIndex);
void collapseFacets(const std::vector<FacetIndex>&);
void insertVertex(FacetIndex, const Base::Vector3f& v);
void snapVertex(FacetIndex, const Base::Vector3f& v);
//@}
/** @name Mesh validation */
//@{
unsigned long countNonUniformOrientedFacets() const;
void flipNormals();
void harmonizeNormals();
void validateIndices();
void validateCaps(float fMaxAngle, float fSplitFactor);
void validateDeformations(float fMaxAngle, float fEps);
void validateDegenerations(float fEps);
void removeDuplicatedPoints();
void removeDuplicatedFacets();
bool hasNonManifolds() const;
bool hasInvalidNeighbourhood() const;
bool hasPointsOutOfRange() const;
bool hasFacetsOutOfRange() const;
bool hasCorruptedFacets() const;
void removeNonManifolds();
void removeNonManifoldPoints();
bool hasSelfIntersections() const;
TFacePairs getSelfIntersections() const;
std::vector<Base::Line3d> getSelfIntersections(const TFacePairs&) const;
void removeSelfIntersections();
void removeSelfIntersections(const std::vector<FacetIndex>&);
void removeFoldsOnSurface();
void removeFullBoundaryFacets();
bool hasInvalidPoints() const;
void removeInvalidPoints();
void mergeFacets();
bool hasPointsOnEdge() const;
void removePointsOnEdge(bool fillBoundary);
//@}
/** @name Mesh segments */
//@{
void addSegment(const Segment&);
void addSegment(const std::vector<FacetIndex>&);
const Segment& getSegment(unsigned long) const;
Segment& getSegment(unsigned long);
MeshObject* meshFromSegment(const std::vector<FacetIndex>&) const;
std::vector<Segment> getSegmentsOfType(GeometryType, float dev, unsigned long minFacets) const;
//@}
/** @name Primitives */
//@{
static MeshObject* createMeshFromList(Py::List& list);
static MeshObject* createSphere(float, int);
static MeshObject* createEllipsoid(float, float, int);
static MeshObject* createCylinder(float, float, int, float, int);
static MeshObject* createCone(float, float, float, int, float, int);
static MeshObject* createTorus(float, float, int);
static MeshObject* createCube(float, float, float);
static MeshObject* createCube(float, float, float, float);
static MeshObject* createCube(const Base::BoundBox3d&);
//@}
public:
class MeshExport const_point_iterator
{
public:
const_point_iterator(const MeshObject*, PointIndex index);
const_point_iterator(const const_point_iterator& pi);
const_point_iterator(const_point_iterator&& pi);
~const_point_iterator();
const_point_iterator& operator=(const const_point_iterator& pi);
const_point_iterator& operator=(const_point_iterator&& pi);
const MeshPoint& operator*();
const MeshPoint* operator->();
bool operator==(const const_point_iterator& pi) const;
bool operator!=(const const_point_iterator& pi) const;
const_point_iterator& operator++();
const_point_iterator& operator--();
private:
void dereference();
const MeshObject* _mesh;
MeshPoint _point;
MeshCore::MeshPointIterator _p_it;
};
class MeshExport const_facet_iterator
{
public:
const_facet_iterator(const MeshObject*, FacetIndex index);
const_facet_iterator(const const_facet_iterator& fi);
const_facet_iterator(const_facet_iterator&& fi);
~const_facet_iterator();
const_facet_iterator& operator=(const const_facet_iterator& fi);
const_facet_iterator& operator=(const_facet_iterator&& fi);
Mesh::Facet& operator*();
Mesh::Facet* operator->();
bool operator==(const const_facet_iterator& fi) const;
bool operator!=(const const_facet_iterator& fi) const;
const_facet_iterator& operator++();
const_facet_iterator& operator--();
private:
void dereference();
const MeshObject* _mesh;
Mesh::Facet _facet;
MeshCore::MeshFacetIterator _f_it;
};
/** @name Iterator */
//@{
const_point_iterator points_begin() const
{
return {this, 0};
}
const_point_iterator points_end() const
{
return {this, countPoints()};
}
const_facet_iterator facets_begin() const
{
return {this, 0};
}
const_facet_iterator facets_end() const
{
return {this, countFacets()};
}
using const_segment_iterator = std::vector<Segment>::const_iterator;
const_segment_iterator segments_begin() const
{
return _segments.begin();
}
const_segment_iterator segments_end() const
{
return _segments.end();
}
//@}
// friends
friend class Segment;
private:
void deletedFacets(const std::vector<FacetIndex>& remFacets);
void updateMesh(const std::vector<FacetIndex>&) const;
void updateMesh() const;
void swapKernel(MeshCore::MeshKernel& kernel, const std::vector<std::string>& g);
void copySegments(const MeshObject&);
void swapSegments(MeshObject&);
private:
Base::Matrix4D _Mtrx;
MeshCore::MeshKernel _kernel;
std::vector<Segment> _segments;
static const float Epsilon;
};
} // namespace Mesh
#endif // MESH_MESH_H
|