Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Mapple_for_Windows_v2.5.2.zip | 2022-11-18 | 69.2 MB | |
Mapple_for_Linux_v2.5.2.AppImage | 2022-11-18 | 62.0 MB | |
Mapple_for_macOS_v2.5.2.dmg | 2022-11-18 | 47.3 MB | |
Easy3D-v2.5.2 source code.tar.gz | 2022-11-18 | 38.7 MB | |
Easy3D-v2.5.2 source code.zip | 2022-11-18 | 40.2 MB | |
README.md | 2022-11-18 | 2.4 kB | |
Totals: 6 Items | 257.4 MB | 0 |
Changes: * unified naming for classes, namespaces, and files * simplified initialization * changes in the names of a few files and namespaces (see the breaking changes below)
Breaking changes:
* the file version.h/version.cpp and thus the following functions have been moved to the util module:
* easy3d::version_major()
* easy3d::version_minor()
* easy3d::version_patch()
* easy3d::version()
* the following namespaces have been renamed:
* buffers -> buffer
* shapes -> shape
* the following files have been renamed:
* buffers.h/buffers.cpp -> buffer.h/buffer.cpp
* shapes.h/shapes.cpp -> shape.h/shape.cpp
* the following function has been moved to namespace easy3d::geom (see here):
c++
bool intersect(const GenericPlane<FT> &plane1, const GenericPlane<FT> &plane2, const GenericPlane<FT> &plane3,
typename GenericPlane<FT>::Point3 &point);