RELEASE_HISTORY.txt 5.1 KB

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