package OCADml
Types and functions for building CAD packages in OCaml
Install
Dune Dependency
Authors
Maintainers
Sources
OCADml-0.5.0.tbz
sha256=fc0b0a0ff598ff06550dfe0a93b279dc2df018914cc7883872d676d7da4dc14c
sha512=e02d943fbed9334730223ea12447b2495812db0bab20302516891d24c088fa8c4a60c366d0e083f4e675a25b394d101d115d3595e05284298d5803acc92351cf
doc/CHANGES.html
v0.5.0
Mesh.t
implentation changed from polygonal to triangular- replace
Mesh.triangulate
withof_polyhedron
- add
Mesh.e
accessor to get points by index (points now stored as array) - add
?no_check
toPath3.to_plane
to avoid coplanarity check (defaults tofalse
)
v0.4.1
- fix
V2.mirror
(xy were inverted) and clarify mirror doc comments - preserve path/poly winding when mirrored
v0.4.0
- make cairo2 a depopt and break
PolyText
into optional sub-library (now free of non-OCaml dependencies) - fix bug in
Path2.point_inside
(always returning outside) - abstract
Poly{2,3}.t
(from private) free up for potential implementation change - add missing
{of,to}_{seq,list,array}
toPath
andPoly
modules for convenience
v0.3.2
- add
of_list
andto_list
convenience functions toPoly2
andPoly3
v0.3.1
- v0.3.0 being marked unavailable on opam due to bugs with Path{2,3}.bbox
- add dune to package dependencies
v0.3.0
- add gg library dependency
- replaced vector (V{2,3,4}.t), matrix (Affine{2,3}), and bounding box types with those from gg
- protect bezier memoization with mutex (OCaml 5 compatibility)
v0.2.2
- fix correctness bug in
Path.noncollinear_triple
v0.2.1
- Add
Mesh.to_stl
(serialization to bin/ascii stl format)
v0.2.0
- Use v4 type for
Plane.t
abstract it and add type conversions Mesh.extrude
altered to return mid-sectionless shape when~height
is less than the combined height of~caps
(rather than breaking withnans
)- Use
Mesh.Cap.t
and sub-variants more consistently for~caps
specification in sweeping functions ofMesh
(looping restricted using sub-types) - Add
Mesh.revolve
v0.1.2
- Add v4 (4d vector) type at top level (use abstracted in
Quaternion
)
v0.1.1
- Add
Mesh.drop_unused_points
- Remove
Mesh.add_face
andMesh.add_faces
- Abstract
Mesh.t
type (free up for potential impl changes) - Add
Path2.triangulate
andMesh.triangulate
v0.1.0
- Initial opam release of the OCADml library