| CARVIEW |
csg: Analytical CSG (Constructive Solid Geometry) library
Flags
Manual Flags
| Name | Description | Default |
|---|---|---|
| triples | Use triples of Doubles to represent vectors (slower with vector library arrays) | Disabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- csg-0.1.0.6.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 0.1, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4, 0.1.0.5, 0.1.0.6 |
|---|---|
| Change log | CHANGELOG.md |
| Dependencies | attoparsec (<0.14), base (<5), bytestring (<0.11), containers (<0.7), csg, gloss (<1.14), gloss-raster (<1.14), QuickCheck (<2.13), simple-vec3 (>=0.4 && <0.5), strict (<0.4), system-filepath (<0.5), transformers (<0.6), turtle (<1.6) [details] |
| License | BSD-3-Clause |
| Author | Dmitry Dzhus |
| Maintainer | dima@dzhus.org |
| Uploaded | by DmitryDzhus at 2019-01-18T14:21:43Z |
| Category | Graphics |
| Home page | https://github.com/dzhus/csg#readme |
| Bug tracker | https://github.com/dzhus/csg/issues |
| Source repo | head: git clone https://github.com/dzhus/csg |
| Distributions | |
| Executables | csg-raycaster |
| Downloads | 3770 total (22 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs not available [build log] All reported builds failed as of 2019-01-18 [all 3 reports] |
Readme for csg-0.1.0.6
[back to package description]CSG: constructive solid geometry library
CSG is a constructive solid geometry library with support for ray casting. CSG allows you to define a complex solid as a composition of primitives. It also provides functions to perform ray casting (find an intersection of a ray and the defined solid) or test whether a point belongs to the solid (for Monte Carlo volume calculation).
-- "Data.CSG" uses 'Vec3' to represent vectors and points:
>>> let p1 = fromXYZ (5, -6.5, -5)
>>> toXYZ (origin :: Point)
(0.0,0.0,0.0)
-- Define some solids:
>>> let s = sphere origin 5.0
>>> let b = cuboid (fromXYZ (-1, -1, -1)) (fromXYZ (1, 1, 1))
-- Test if a point is inside the solid:
>>> origin `inside` (s `intersect` b)
True
>>> origin `inside` (s `subtract` b)
False
-- Find the distance to the next intersection of a ray with a solid, along with the
-- surface normal:
>>> let axis = fromXYZ (1, 2, 10)
>>> let solid = cylinder origin axis 2.0 `intersect` sphere origin 3.5
>>> let ray = Ray (p1, origin <-> p1)
>>> ray `cast` solid
Just (HitPoint 0.7422558525331708 (Just (CVec3 0.7155468474912454 (-0.6952955216188516) 6.750441957464598e-2)))
-- Load a solid definition from a file:
>>> import Data.CSG.Parser
>>> Right solid2 <- parseGeometryFile "examples/reentry.geo"
>>> ray `cast` solid2
Just (HitPoint 10.877824491509912 (Just (CVec3 (-0.5690708596937849) 0.7397921176019203 0.3589790793088691)))
Please consult the Hackage page for csg for full documentation.
By default csg is built using CVec3 from simple-vec3 to
represent vectors and points, which according to benchmarks shows
better performance with Unboxed and Storable vectors. Build csg with
triples flag to use (Double, Double, Double) instead which may be
a more convenient programmatic interface that needs no
fromXYZ/toXYZ.
See alternatives too.
csg-raycaster
The package also includes csg-raycaster executable, which is a
simple interactive GUI for the ray casting algorithm.
csg-raycaster takes a geometry defintion file as input. See
cube.geo:
solid box = orthobrick (-150, -150, -150; 150, 150, 150);
solid rounded = sphere (0, 0, 0; 200);
solid roundedbox = rounded and box;
solid cylinder1 = cylinder (-160, 0, 0; 160, 0, 0; 100);
solid cylinder2 = cylinder (0, -160, 0; 0, 160, 0; 100);
solid cylinder3 = cylinder (0, 0, -160; 0, 0, 160; 100);
solid cross = cylinder1 or cylinder2 or cylinder3;
solid cutout = not cross;
solid top = roundedbox and cutout;
tlo top;
Please consult the Hackage page for Data.CSG.Parser for full format specification.
csg-raycaster may be run as
csg-raycaster cube.geo
Run as csg-raycaster --help to see all options.

When run without a file argument, csg-raycaster will try to display
an arbitrary CSG solid.
In the GUI window the following controls are supported:
| Input | Function |
|---|---|
| Left mouse button + drag | Rotate |
| Right mouse button + drag | Pan |
| Mouse wheel up | Zoom in |
| Mouse wheel down | Zoom out |
r |
Reset zoom level and camera position |
Alternatives
csg library performs no surface interpolation when doing ray casting. Instead, we only solve ray-surface intersection equation numerically. The library was written with Repa/vector compatibility and performance in mind.
There're other Haskell libraries for CSG:
-
-
Has more ray tracing-specific features, such as light sources, different textures and materials.
-
Unlike
csg, has no tests or benchmarks. -
In
csgsolids use the same type as opposed to different types with an existential box inGlomeTrace.
-
-
-
Offers a much richer operation set.
-
Uses function representation for CSG solids.
-
If
implicithad ray-casting support in early 2012 then I probably wouldn't writecsg.
-
-
-
Only provides types and functions to define solids and export definitions to external formats.
-
No support for ray casting.
-