-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1146 from t3kt/0.37
0.37
- Loading branch information
Showing
285 changed files
with
1,255 additions
and
716 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# me - this DAT | ||
# dat - the DAT that is querying | ||
# curOp - the OP being queried | ||
# row - the table row index | ||
|
||
# Uncomment following two functions to add custom columns | ||
|
||
def onInitGetColumnNames(dat): | ||
return [ | ||
'tox', | ||
'dirty' | ||
] | ||
|
||
def onFindOPGetValues(dat, curOp, row): | ||
return [ | ||
curOp.par['externaltox'], | ||
curOp.dirty, | ||
] | ||
|
||
|
||
# Return True / False to include / exclude an operator in the table | ||
|
||
def onFindOPGetInclude(dat, curOp, row): | ||
return bool(curOp.par['externaltox']) and not curOp.par['clone'] | ||
|
||
|
||
# Provide an extensive dictionary of what was matched for each operator. | ||
# Multiple matching tags, parameters and cells will be included. | ||
# For each match, a corresponding key is included in the dictionary: | ||
# | ||
# results: | ||
# | ||
# 'name': curOp.name | ||
# 'type': curOp.OPType | ||
# 'path': curOp.path | ||
# 'parent' : curOp.parent() | ||
# 'comment': curOp.comment | ||
# 'tags' : [list of strings] or empty list | ||
# 'text' : [list of Cells] or empty list | ||
# 'par': dictionary of matching parameter attributes. | ||
# example entries: | ||
# tx : { 'name': True, 'value':True , 'expression':True } # Parameter tx matched on name, value, expression | ||
# ty : { 'value' : True } # Parameter ty matched on value | ||
# | ||
|
||
def onOPFound(dat, curOp, row, results): | ||
return | ||
|
||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
83 changes: 0 additions & 83 deletions
83
devel/toolkitEditor/ropEditor/inputsPanel/inputEditor/inputEditor.py
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-283 KB
devel/toolkitEditor/ropEditor/inputsPanel/inputEditor/inputEditor.tox
Binary file not shown.
8 changes: 0 additions & 8 deletions
8
devel/toolkitEditor/ropEditor/inputsPanel/inputEditor/typeSpecEditor.py
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-48.7 KB
devel/toolkitEditor/ropEditor/inputsPanel/inputEditor/typeSpecEditor.tox
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
toolkitVersion: '0.36' | ||
toolkitVersion: '0.37' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
--- | ||
layout: operator | ||
title: applyTransform | ||
parent: Filter Operators | ||
grand_parent: Operators | ||
permalink: /reference/operators/filter/applyTransform | ||
redirect_from: | ||
- /reference/opType/raytk.operators.filter.applyTransform/ | ||
op: | ||
category: filter | ||
inputs: | ||
- contextTypes: | ||
- Context | ||
- MaterialContext | ||
- CameraContext | ||
- LightContext | ||
- RayContext | ||
- ParticleContext | ||
coordTypes: | ||
- float | ||
- vec2 | ||
- vec3 | ||
- vec4 | ||
label: definition_in | ||
name: definition_in | ||
required: true | ||
returnTypes: | ||
- float | ||
- vec4 | ||
- Sdf | ||
- Ray | ||
- Light | ||
- Particle | ||
- contextTypes: | ||
- Context | ||
- MaterialContext | ||
- CameraContext | ||
- LightContext | ||
- RayContext | ||
- ParticleContext | ||
coordTypes: | ||
- float | ||
- vec2 | ||
- vec3 | ||
- vec4 | ||
label: Transform 1 | ||
name: transform | ||
required: true | ||
returnTypes: | ||
- vec4 | ||
name: applyTransform | ||
opType: raytk.operators.filter.applyTransform | ||
parameters: | ||
- label: Enable | ||
name: Enable | ||
- label: Apply To | ||
menuOptions: | ||
- label: Coordinates | ||
name: coords | ||
- label: SDF UV | ||
name: sdfuv | ||
- label: SDF Secondary UV | ||
name: sdfuv2 | ||
- label: UV In Material | ||
name: matuv | ||
- label: Field Values | ||
name: value | ||
name: Target | ||
status: beta | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.