Skip to content

Commit afe697e

Browse files
committed
[new release] OCADml (0.5.0)
CHANGES: - `Mesh.t` implentation changed from polygonal to triangular - replace `Mesh.triangulate` with `of_polyhedron` - add `Mesh.e` accessor to get points by index (points now stored as array) - add `?no_check` to `Path3.to_plane` to avoid coplanarity check (defaults to `false`)
1 parent 140feee commit afe697e

File tree

1 file changed

+43
-0
lines changed
  • packages/OCADml/OCADml.0.5.0

1 file changed

+43
-0
lines changed

packages/OCADml/OCADml.0.5.0/opam

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
synopsis: "Types and functions for building CAD packages in OCaml"
3+
description: "Types and functions for building CAD packages in OCaml"
4+
maintainer: ["Geoff deRosenroll<[email protected]"]
5+
authors: ["Geoff deRosenroll<[email protected]"]
6+
license: "GPL-2.0-or-later"
7+
tags: ["OCADml" "CAD"]
8+
homepage: "https://github.com/OCADml/OCADml"
9+
doc: "https://OCADml.github.io/OCADml"
10+
bug-reports: "https://github.com/OCADml/OCADml/issues"
11+
depends: [
12+
"ocaml" {>= "4.14.0"}
13+
"dune" {>= "3.3"}
14+
"gg" {>= "1.0.0"}
15+
"odoc" {with-doc}
16+
]
17+
depopts: [
18+
"cairo2" {>= "0.6.2"}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/OCADml/OCADml.git"
35+
url {
36+
src:
37+
"https://github.com/OCADml/OCADml/releases/download/v0.5.0/OCADml-0.5.0.tbz"
38+
checksum: [
39+
"sha256=fc0b0a0ff598ff06550dfe0a93b279dc2df018914cc7883872d676d7da4dc14c"
40+
"sha512=e02d943fbed9334730223ea12447b2495812db0bab20302516891d24c088fa8c4a60c366d0e083f4e675a25b394d101d115d3595e05284298d5803acc92351cf"
41+
]
42+
}
43+
x-commit-hash: "aa6a869c3d48049057436a23feb45b36edcbf5c2"

0 commit comments

Comments
 (0)