RELEASE_HISTORY.txt 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. # Version tracking
  2. Version | Short description
  3. --------|----------------------------------------------------------------------
  4. 1.1.7 | Switch build for static library to cmake.
  5. 1.1.6 | Major boolean robustness fix, drop CGAL dependency for AABB/distances
  6. 1.1.5 | Bug fix in booleans
  7. 1.1.4 | Edge collapsing and linear program solving
  8. 1.1.3 | Bug fixes in active set and boundary_conditions
  9. 1.1.1 | PLY file format support
  10. 1.1.0 | Mesh boolean operations using CGAL and cork, implementing [Attene 14]
  11. 1.0.3 | Bone heat method
  12. 1.0.2 | Bug fix in winding number code
  13. 1.0.1 | Bug fixes and more CGAL support
  14. 1.0.0 | Major beta release: many renames, tutorial, triangle, org. build
  15. ## Version 1.2 Changes ##
  16. This change introduces better organization of dependencies and removes some
  17. deprecated/repeated functions. The 3x3 svd code and dependent functions
  18. (including ARAP) were absorbed into the main library.
  19. ### Deprecated/repeated functions ###
  20. Old | New
  21. -------------------------------- | -------------------------------------
  22. `igl::angles` | `igl::internal_angles`
  23. ## Version 1.0 Changes ##
  24. Our beta release marks our confidence that this library can be used outside of
  25. casual experimenting. To maintain order, we have made a few changes which
  26. current users should read and adapt their code accordingly.
  27. ### Renamed functions ###
  28. The following table lists functions which have changed name as of version
  29. 1.0.0:
  30. Old | New
  31. -------------------------------- | -------------------------------------
  32. `igl::add_barycenter` | `igl::false_barycentric_subdivision`
  33. `igl::areamatrix` | `igl::vector_area_matrix`
  34. `igl::barycentric2global` | `igl::barycentric_to_global`
  35. `igl::boundary_faces` | `igl::boundary_facets`
  36. `igl::boundary_vertices_sorted` | `igl::boundary_loop`
  37. `igl::cotangent` | `igl::cotmatrix_entries`
  38. `igl::edgetopology` | `igl::edge_topology`
  39. `igl::gradMat` | `igl::grad`
  40. `igl::is_manifold` | `igl::is_edge_manifold`
  41. `igl::mexStream` | `igl::MexStream`
  42. `igl::moveFV` | `igl::average_onto_vertices`
  43. `igl::moveVF` | `igl::average_onto_faces`
  44. `igl::plot_vector` | `igl::print_vector`
  45. `igl::pos` | `igl::HalfEdgeIterator`
  46. `igl::plane_project` | `igl::project_isometrically_to_plane`
  47. `igl::project_points_mesh` | `igl::line_mesh_intersection`
  48. `igl::read` | `igl::read_triangle_mesh`
  49. `igl::removeDuplicates.cpp` | `igl::remove_duplicates`
  50. `igl::removeUnreferenced` | `igl::remove_unreferenced`
  51. `igl::tt` | `igl::triangle_triangle_adjacency`
  52. `igl::vf` | `igl::vertex_triangle_adjacency`
  53. `igl::write` | `igl::write_triangle_mesh`
  54. `igl::manifold_patches` | `igl::orientable_patches`
  55. `igl::selfintersect` | `igl::remesh_self_intersections`
  56. `igl::project_mesh` | `igl::line_mesh_intersection`
  57. `igl::triangulate` | `igl::polygon_mesh_to_triangle_mesh`
  58. `igl::is_manifold` | `igl::is_edge_manifold`
  59. `igl::triangle_wrapper` | `igl::triangulate`
  60. ### Miscellaneous ###
  61. - To match interfaces provided by (all) other quadratic optimization
  62. libraries, `igl::min_quad_with_fixed` and `igl::active_set` now expect as
  63. input twice the quadratic coefficients matrix, i.e. the Hessian. For
  64. example, `igl::min_quad_with_fixed(H,B,...)` minimizes $\frac{1}{2}x^T H
  65. x+x^T B$.
  66. - We have inverted the `IGL_HEADER_ONLY` macro to `IGL_STATIC_LIBRARY`. To
  67. compile using libigl as a header-only library, simply include headers and
  68. libigl in the header search path. To link to libigl, you must define the
  69. `IGL_STATIC_LIBRARY` macro at compile time and link to the `libigl*.a`
  70. libraries.
  71. - Building libigl as a static library is now more organized. There is a
  72. `build/` directory with Makefiles for the main library (`Makefile`) and each
  73. dependency (e.g. `Makefile_mosek` for `libiglmosek.a`)
  74. - `igl::polar_svd` now always returns a rotation in `R`, never a reflection.
  75. This mirrors the behavior of `igl::polar_svd3x3`. Consequently the `T`
  76. part may have negative skews.
  77. - We have organized the static
  78. - The previous `igl::grad` function, which computed the per-triangle gradient
  79. of a per-vertex scalar function has been replaced. Now `igl::grad` computes
  80. the linear operator (previous computed using `igl::gradMat`). The gradient
  81. values can still be recovered by multiplying the operator against the scalar
  82. field as a vector and reshaping to have gradients per row.
  83. - `MASSMATRIX_*` has become `MASSMATRIX_TYPE_*`
  84. - The function `igl::project_normals`, which cast a line for each vertex of
  85. mesh _A_ in the normal direction and found the closest intersection along
  86. these lines with mesh _B_, has been removed.
  87. 0.4.6 Generalized Winding Numbers
  88. 0.4.5 CGAL extra: mesh selfintersection
  89. 0.4.4 STL file format support
  90. 0.4.3 ARAP implementation
  91. 0.4.1 Migrated much of the FAST code including extra for Sifakis' 3x3 svd
  92. 0.4.0 Release under MPL2 license
  93. 0.3.7 Embree2.0 support
  94. 0.3.6 boost extra, patches, mosek 7 support, libiglbbw (mosek optional)
  95. 0.3.5 More examples, naive primitive sorting
  96. 0.3.3 Many more examples, ambient occlusion with Embree.
  97. 0.3.1 Linearly dependent constraints in min_quad_with_fixed, SparseQR buggy
  98. 0.3.0 Better active set method support
  99. 0.2.3 More explicits, active set method, opengl/anttweakbar guards
  100. 0.2.2 More explicit instanciations, faster sorts and uniques
  101. 0.2.1 Bug fixes in barycenter and doublearea found by Martin Bisson
  102. 0.2.0 XML serializer more stable and fixed bug in remove_duplicate_vertices
  103. 0.1.8 Embree and xml (windows only) extras
  104. 0.1.5 Compilation on windows, bug fix for compilation with cygwin
  105. 0.1.1 Alpha release with core functions, extras, examples