1b72d20bb6
Perlin noise is ubiquitous in modern CGI. Used for procedural texturing, animation, and enhancing realism, Perlin noise has been called the "salt" of procedural content. Perlin noise is a type of gradient noise, smoothly interpolating across a pseudo-random matrix of values. The noise library includes native-code implementations of Perlin "improved" noise and Perlin simplex noise. It also includes a fast implementation of Perlin noise in GLSL, for use in OpenGL shaders.
14 lines
372 B
Makefile
14 lines
372 B
Makefile
# $NetBSD: Makefile,v 1.1 2016/08/20 07:15:06 wiz Exp $
|
|
|
|
DISTNAME= noise-1.2.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=n/noise/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://pypi.python.org/pypi/noise/
|
|
COMMENT= Perlin noise for Python
|
|
LICENSE= mit
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|