File: control

package info (click to toggle)
pygalmesh 0.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,152 kB
  • sloc: cpp: 2,254; python: 1,607; makefile: 44
file content (52 lines) | stat: -rw-r--r-- 2,128 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Source: pygalmesh
Section: python
Priority: optional
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Uploaders: Drew Parsons <dparsons@debian.org>
Build-Depends: debhelper-compat (= 13),
 dh-python, python3-all-dev, python3-setuptools (>= 42),
 libcgal-dev,
 libeigen3-dev,
 python3-meshio (>= 4),
 python3-pybind11 (>= 2.5)
Standards-Version: 4.5.0
Homepage: https://github.com/nschloe/pygalmesh
Vcs-Browser: https://salsa.debian.org/science-team/pygalmesh
Vcs-Git: https://salsa.debian.org/science-team/pygalmesh.git

Package: python3-pygalmesh
Architecture: any
Depends: ${python3:Depends}, ${shlibs:Depends}, ${misc:Depends}
Suggests: python-pygalmesh-doc
Description: Python 3 frontend to CGAL's 3D mesh generators
 pygalmesh makes it easy to create high-quality 3D volume and surface
 meshes.
 .
 CGAL offers two different approaches for mesh generation:
  -   Meshes defined implicitly by level sets of functions.
  -   Meshes defined by a set of bounding planes.
 .
 pygalmesh provides a front-end to the first approach, which has the
 following advantages and disadvantages:
  -   All boundary points are guaranteed to be in the level set within
      any specified residual. This results in smooth curved surfaces.
  -   Sharp intersections of subdomains (e.g., in unions or
      differences of sets) need to be specified manually (via feature edges,
      see below), which can be tedious.
 .
 On the other hand, the bounding-plane approach (realized by mshr),
 has the following properties:
  -   Smooth, curved domains are approximated by a set of bounding
      planes, resulting in more of less visible edges.
  -   Intersections of domains can be computed automatically, so
      domain unions etc. have sharp edges where they belong.
 .
 pygalmesh and mshr are therefore complementary.
 .
 pygalmesh also interfaces CGAL's 3D periodic mesh generation.
 .
 This package installs the pygalmesh module for Python 3.
 .
 It also provides the utility scripts pygalmesh-from-inr and
 pygalmesh-volume-from-surface for generating volume meshes from
 INR or surface meshes.