Skip to content
/ curv Public
forked from curv3d/curv

a language for making art using mathematics

License

Notifications You must be signed in to change notification settings

bob4081/curv

 
 

Repository files navigation

Curv: a language for making art using mathematics

By Doug Moen <doug@moens.org>

twistor shreks_donut

Curv is a programming language for creating art using mathematics. It's a 2D and 3D geometric modelling tool that supports full colour, animation and 3D printing.

Features:

  • Curv is a simple, powerful, dynamically typed, pure functional programming language.
  • Curv is easy to use for beginners. It has a standard library of predefined geometric shapes, plus operators for transforming and combining shapes. These can be plugged together like Lego to make 2D and 3D models.
  • Coloured shapes are represented using Function Representation (F-Rep). They can be infinitely detailed, infinitely large, and any shape or colour pattern that can be described using mathematics can be represented exactly.
  • Curv exposes the full power of F-Rep programming to experts. The standard geometry library is written entirely in Curv. Many of the demos seen on shadertoy.com can be reproduced in Curv, using shorter, simpler programs. Experts can package techniques used on shadertoy as high level operations for use by beginners.
  • Rendering is GPU accelerated. Curv programs are compiled into fragment shaders which are executed on the GPU.
  • Curv can export meshes to STL, OBJ and X3D files for 3D printing. The X3D format supports full colour 3D printing (on Shapeways.com, at least). These meshes are defect free: watertight, manifold, with no self intersections, degenerate triangles, or flipped triangles.

Getting Started

  • To install the software, see BUILD.md.
  • The documentation is here: docs/README.rst.
  • Mailing list: https://groups.google.com/d/forum/curv. You can join the mailing list using your Google account (or you'll be prompted to create an account). If you don't want to have a Google account, then send email to doug@moens.org and I will send you an invitation to join the list.
  • To contribute, see CONTRIBUTING.md.

Hardware Requirements

Linux, MacOS and Windows are supported.

Precisely, Ubuntu LTS and MacOS 10.11 are currently tested by me, @doug-moen. The Windows port is tested by @ComFreek.

Curv uses OpenGL 3.3. The recommended configuration is a GPU made by Intel, AMD or Nvidia, using a known working GPU driver (see below).

  • On Linux, the GPU needs to be modern enough to be supported by the latest driver version from the GPU vendor. Any GPU from 2012 or later will work. Some older GPUs may work: check the list of supported hardware for the driver.
  • On Macintosh, you need MacOS 10.7 or later. If your system supports Metal, Curv is fully supported. On a pre-Metal system (hardware from 2011 or earlier), some Curv programs may not work correctly.
  • On Windows, you can use MSYS to build and run a native executable. Alternatively, you can use Windows Subystem for Linux (WSL) <https://en.wikipedia.org/wiki/Windows_Subsystem_for_Linux> for building and running non-natively. However, this alternative is vastly inferior to MSYS since WSL has no GPU support so far, which forces us to fall back to software rendering. See issue #88 for details.
  • Raspberry Pi isn't supported yet.
    • Raspberry Pi 4 support is planned. I believe that Curv could be ported without a great effort. Curv uses X11 and GLX to create an OpenGL context. Curv requests an OpenGL 3.3 context, which isn't supported, but OpenGL ES 3.1 is supported. It might just be a matter of changing the context type, and possibly other small changes. The Raspberry Pi 4 hardware supports all of the features that I plan to use in future releases of Curv.
    • Raspberry Pi 3 won't be supported. At best, it supports OpenGL ES 2.0, which is not good enough: APIs currently used by Curv are missing.
  • On Linux, you have 3 choices:
    • An Nvidia GPU, with the Nvidia closed source driver. Any GPU supported by the latest Nvidia driver will work with Curv.

      The open source Nouveau driver is slow and buggy. Curv runs too slow, with visual glitches. If you don't mind driver hacking, there are some mitigations you can try. See issue #78.

    • An Intel GPU, using the Intel supplied open source driver (based on Mesa). Any GPU supported by the latest Intel driver will work with Curv (this means: Intel HD Graphics or later).
    • An AMD GPU with the open source Mesa driver, version 19.x or later. The AMDGPU-PRO (closed source) driver should work, but I have no testing reports for it.

      Mesa version 18.x or earlier has a bug on AMD (issue #30) which prevents some Curv programs from running.

  • If Curv is invoked within a VNC session, then it might not have direct access to GPU hardware (a slow software renderer is used instead of the GPU). Curv requires a GPU accelerated VNC server. Try TurboVNC combined with VirtualGL.
  • If Curv is run inside a VM, then it might not have direct access to the GPU. You need to ensure that the VM is GPU accelerated.

Why is Curv so picky about GPU drivers and hardware, when [some old 3D software] runs just fine? The answer is that old 3D software relies primarily on triangle meshes for representing and rendering 3D shapes, whereas Curv uses signed distance fields to represent shapes. Signed distance fields are a powerful, hot new technology that is only made practical by modern GPUs. Curv uses shader programs to render shapes, and uses larger and more complex shader programs than [some old 3D software]. This places a heavy and atypical load on the GPU driver and hardware, which old hardware and old, outdated driver software may not be prepared to deal with.

About

a language for making art using mathematics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 94.0%
  • GLSL 3.4%
  • CMake 0.9%
  • PowerShell 0.8%
  • OpenSCAD 0.3%
  • Roff 0.3%
  • Other 0.3%