From 192a89a7f9f396fff4eb6b0836f597c376e98932 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 20 May 2022 21:25:39 -0700 Subject: modules/shapes: add procedural 2D shapes module Mostly for compositing purposes, here will be a corpus of 2D shapes, parameterized/procedurally generated and able to rotate and perhaps have other dynamics added. What shapes are there presently I had started implementing in checkers as "styles", before realizing they really should just be a separate module checkers can call into. Not terribly interesting by itself, but as blinds and checkers demonstrated, these things deliver a lot of value in compositional situations. They're creating the palette to draw from. --- configure.ac | 1 + 1 file changed, 1 insertion(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index aa45307..23b8bad 100644 --- a/configure.ac +++ b/configure.ac @@ -55,6 +55,7 @@ AC_CONFIG_FILES([ src/modules/ray/Makefile src/modules/roto/Makefile src/modules/rtv/Makefile + src/modules/shapes/Makefile src/modules/snow/Makefile src/modules/sparkler/Makefile src/modules/spiro/Makefile -- cgit v1.2.1