RELEASE_HISTORY.txt 5.1 KB

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