• Stars
    star
    278
  • Rank 143,539 (Top 3 %)
  • Language
    Clojure
  • Created about 12 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The Clojure Image Synthesis Kit

Clisk

Clisk is a Clojure based DSL/library for procedural image generation.

You can use it for:

  • Creating 2D material textures for games
  • Building fractal images / artwork
  • Generating 3D or 4D textures for raytracing (e.g. in Enlight: https://github.com/mikera/enlight)
  • Creating patterns (e.g. randomly generated maps)
  • Creating autostereograms (see the examples)

The core operation of Clisk is taking an image description using the Clisk DSL as input and creating a bitmap images as output. You can create images of arbitrary size as long as they fit in memory.

Clisk is intended to be used from Clojure in a REPL environment, but can also with a little effort be used from Java.

Clojars Project

Build Status

Example code and resulting image

;; Create a Voronoi map based on a mathematical function
(def vblocks 
  (v* 5.0 
      (voronoi-function 
        `(Math/sqrt (- (* ~'y ~'y) (* ~'x ~'x))))))

;; Render an texture using the Voronoi map as a height-field
(show (render-lit 
        (seamless vplasma) 
        (v+ (v* 0.2 (seamless 0.2 (rotate 0.1 plasma))) 
            (v* 0.6 vblocks))))

Voronoi rocks

Demos and mini-tutorials can be found by examining the code samples here:

For more examples see the Wiki

Installation

The best way to get started with clisk is to install it from Clojars using either leiningen or Maven.

Once you have Clisk specified as a dependency, you should be able to get going with the key functionality as follows:

(use 'clisk.live)
 
(show (checker red white))

Features

  • A concise DSL for specifying image generators through function composition
  • Multi-dimensional texture generation (e.g. 4D textures including time dimension for animations)
  • Fast image synthesis thanks to compiled image generation functions (typically sub-second generation 256*256 4x antialiased textures)
  • Anti-aliasing (arbitrary precision)
  • A wide variety of patterns and transforms, e.g. Voronoi maps, Perlin Noise
  • Easily extensible with your own image generation functions
  • Ability to render surfaces with shading based on 3D heightmaps

Plasma Globe

License

Clisk is open source, licensed under the GNU Lesser General Public License (LGPL)

More Repositories

1

core.matrix

core.matrix : Multi-dimensional array programming API for Clojure
Clojure
696
star
2

imagez

Image processing library for Clojure
Clojure
296
star
3

vectorz

Fast and flexible numerical library for Java featuring N-dimensional arrays
Java
234
star
4

vectorz-clj

Fast matrix and vector maths library for Clojure - as a core.matrix implementation
Clojure
199
star
5

ironclad

Ironclad: Steam Legions - A steampunk strategy game in Clojure
Clojure
133
star
6

clojure-utils

A library of various small but handy clojure utility functions
Clojure
114
star
7

kiss

A statically typed, functional Lisp, building upon Clojure
Java
78
star
8

alchemy

A 7 day roguelike in Clojure
Clojure
75
star
9

swing-console

A Swing text console component
Java
68
star
10

tyrant

Tyrant Roguelike game in Java
Java
55
star
11

enlight

A Clojure raytracer
Java
44
star
12

timeline

Adding the time dimension to Clojure data
Clojure
39
star
13

magic

Experimental typed JVM Lisp inspired by Clojure
Java
33
star
14

cljunit

JUnit test integration for Clojure
Java
20
star
15

spectral

Experiments in Overtone with spectral analysis
Clojure
18
star
16

telegenic

Video creation and manipulation in Clojure
Clojure
18
star
17

task

A Clojure library for running and managing interactive tasks
Clojure
17
star
18

orculje

A Clojure toolkit for building roguelike games
Clojure
13
star
19

randomz

Library of fast random number generation functions
Java
12
star
20

mikera

Mike's general purpose Java library
Java
11
star
21

clojure-golf

Code golfing in Clojure - for fans of obfuscated code and code golf
Clojure
11
star
22

blockgame

A decentralised block game, 100% on-chain 3D universe
Java
11
star
23

core.matrix.complex

Complex numerical arrays in Clojure, as an extension to core.matrix
Clojure
9
star
24

motion-sensor

Clojure library to interface with TI CC254X accelerometers / motion sensors
8
star
25

steampunk-laf

Steampunk look and feel for Java Swing
Java
8
star
26

singa-viz

Animated visualisation of Singapore with Clojure and core.matrix
Clojure
5
star
27

mikera-clojure

Mike's library of Clojure functions
Clojure
4
star
28

nd4clj

Nd4j for Clojure
Clojure
4
star
29

trellis

A mildly opinionated Clojure framework for data-driven web applications
Clojure
3
star
30

glaze

A lightweight Clojure wrapper library for LWJGL
Java
3
star
31

edn-pojos

A lightweight library for building / unmarshalling Java POJO objects from edn format data
Java
3
star
32

vectorz-opencl

Experimental
Java
3
star
33

clojure-pom

A generic parent pom.xml for Clojure projects, based on mikera-pom
2
star
34

core.matrix.benchmark

Benchmark and testing suite for core.matrix implementations
Clojure
2
star
35

java-life

Flexible cellular automata system inspired by Conway's Game of Life
Java
2
star
36

vectorz-native

Fast native-optimised linear algebra library for Java
Java
2
star
37

euler-clojure

Project Euler solutions in Clojure
Clojure
2
star
38

enchant

Clojure integration for the Magic language
Clojure
2
star
39

clobber

Prototype-based object system for Clojure (experimental)
Clojure
2
star
40

mathz

Library of maths functions and utilities for Java
Java
2
star
41

streamz

RESTful server for realtime data streams
Clojure
2
star
42

mikera-gui

GUI components and utilities for Java
Java
2
star
43

mikera.net

Mike's personal website
HTML
1
star
44

clj-spss

SPSS .Sav file reader for Clojure
Java
1
star
45

mikera-pom

Parent pom.xml for mikera projects
1
star
46

datomic-test

Test project for Datomic database, with Clojure, Java and Maven
Clojure
1
star
47

cuboid

Java
1
star