glsl-token-defines

WebJar for glsl-token-defines

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

glsl-token-defines
Последняя версия

Последняя версия

1.0.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

glsl-token-defines
WebJar for glsl-token-defines
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/glslify/glsl-token-defines

Скачать glsl-token-defines

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/glsl-token-defines/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>glsl-token-defines</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/glsl-token-defines/
implementation 'org.webjars.npm:glsl-token-defines:1.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/glsl-token-defines/
implementation ("org.webjars.npm:glsl-token-defines:1.0.0")
'org.webjars.npm:glsl-token-defines:jar:1.0.0'
<dependency org="org.webjars.npm" name="glsl-token-defines" rev="1.0.0">
  <artifact name="glsl-token-defines" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='glsl-token-defines', version='1.0.0')
)
libraryDependencies += "org.webjars.npm" % "glsl-token-defines" % "1.0.0"
[org.webjars.npm/glsl-token-defines "1.0.0"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : glsl-tokenizer jar [2.0.0,3)

Модули Проекта

Данный проект не имеет модулей.

glsl-token-defines

experimental

Retrieve the values defined with preprocessor statements in a selection of GLSL tokens.

Doesn't handle full function-style macros for the time being. Patches welcome!

Usage

NPM

defs = defines(tokens)

Where tokens is an array of tokens produced by glsl-tokenizer.

Returns an dictionary object where keys are the name of the defined variable, and values are the values of the defined variable. If a variable is not assigned a value, this will be an empty string.

For example, the following:

#define PI 3.14
#define TAU (PI*2.)
#define VEC vec3(1.)
#define EMPTY

Would yield:

{
  PI: '3.14',
  TAU: '(PI*2.)',
  VEC: 'vec3(1.)',
  EMPTY: ''
}

Contributing

See stackgl/contributing for details.

License

MIT. See LICENSE.md for details.

org.webjars.npm

Версии библиотеки

Версия
1.0.0