├── .github └── workflows │ ├── build.yml │ └── whitespace.yml ├── .gitignore ├── CHANGES.md ├── CMakeLists.txt ├── COPYRIGHT.md ├── LICENSE ├── README.md ├── ci ├── build_ax.sh ├── extract_test_examples.sh ├── install_llvm.sh ├── install_macos_ax.sh └── install_openvdb.sh ├── cmake └── backports │ ├── FindBlosc.cmake │ ├── FindCppUnit.cmake │ ├── FindIlmBase.cmake │ ├── FindLog4cplus.cmake │ ├── FindOpenEXR.cmake │ ├── FindOpenVDB.cmake │ ├── FindTBB.cmake │ ├── OpenVDBHoudiniSetup.cmake │ └── OpenVDBUtils.cmake ├── openvdb_ax ├── CMakeLists.txt ├── Exceptions.h ├── ast │ ├── AST.h │ ├── Parse.cc │ ├── Parse.h │ ├── PrintTree.cc │ ├── PrintTree.h │ ├── Scanners.cc │ ├── Scanners.h │ ├── Tokens.h │ └── Visitor.h ├── ax.cc ├── ax.h ├── cmd │ ├── CMakeLists.txt │ └── openvdb_ax.cc ├── codegen │ ├── ComputeGenerator.cc │ ├── ComputeGenerator.h │ ├── ConstantFolding.h │ ├── FunctionRegistry.cc │ ├── FunctionRegistry.h │ ├── FunctionTypes.cc │ ├── FunctionTypes.h │ ├── Functions.h │ ├── PointComputeGenerator.cc │ ├── PointComputeGenerator.h │ ├── PointFunctions.cc │ ├── PointLeafLocalData.h │ ├── StandardFunctions.cc │ ├── SymbolTable.h │ ├── Types.cc │ ├── Types.h │ ├── Utils.h │ ├── VolumeComputeGenerator.cc │ ├── VolumeComputeGenerator.h │ └── VolumeFunctions.cc ├── compiler │ ├── AttributeRegistry.h │ ├── Compiler.cc │ ├── Compiler.h │ ├── CompilerOptions.h │ ├── CustomData.h │ ├── Logger.cc │ ├── Logger.h │ ├── PointExecutable.cc │ ├── PointExecutable.h │ ├── VolumeExecutable.cc │ └── VolumeExecutable.h ├── doc │ ├── CMakeLists.txt │ ├── ax.txt │ ├── axcplusplus.txt │ ├── axexamples.txt │ ├── axfunctionlist.txt │ ├── doc.txt │ └── openvdbaxbuild.txt ├── grammar │ ├── axlexer.l │ ├── axparser.y │ └── generated │ │ ├── README │ │ ├── axlexer.cc │ │ ├── axparser.cc │ │ └── axparser.h ├── math │ ├── OpenSimplexNoise.cc │ └── OpenSimplexNoise.h ├── python │ ├── CMakeLists.txt │ ├── pyCompiler.cc │ ├── pyCompiler.h │ ├── pyOpenVDBAX.cc │ ├── pyPointExecutable.cc │ ├── pyPointExecutable.h │ ├── pyVolumeExecutable.cc │ └── pyVolumeExecutable.h └── test │ ├── CMakeLists.txt │ ├── ast │ ├── TestPrinters.cc │ └── TestScanners.cc │ ├── backend │ ├── TestComputeGeneratorFailures.cc │ ├── TestFunctionGroup.cc │ ├── TestFunctionRegistry.cc │ ├── TestFunctionTypes.cc │ ├── TestLogger.cc │ ├── TestSymbolTable.cc │ ├── TestTypes.cc │ └── util.h │ ├── compiler │ ├── TestAXRun.cc │ ├── TestPointExecutable.cc │ └── TestVolumeExecutable.cc │ ├── frontend │ ├── TestArrayPack.cc │ ├── TestArrayUnpackNode.cc │ ├── TestAssignExpressionNode.cc │ ├── TestAttributeNode.cc │ ├── TestBinaryOperatorNode.cc │ ├── TestCastNode.cc │ ├── TestCommaOperator.cc │ ├── TestConditionalStatementNode.cc │ ├── TestCrementNode.cc │ ├── TestDeclareLocalNode.cc │ ├── TestExternalVariableNode.cc │ ├── TestFunctionCallNode.cc │ ├── TestKeywordNode.cc │ ├── TestLocalNode.cc │ ├── TestLoopNode.cc │ ├── TestStatementListNode.cc │ ├── TestSyntaxFailures.cc │ ├── TestTernaryOperatorNode.cc │ ├── TestUnaryOperatorNode.cc │ └── TestValueNode.cc │ ├── integration │ ├── CompareGrids.cc │ ├── CompareGrids.h │ ├── TestArrayUnpack.cc │ ├── TestArrayUnpack │ │ ├── array_unpack.mat.double.ax │ │ ├── array_unpack.mat.float.ax │ │ ├── array_unpack.vec.double.ax │ │ ├── array_unpack.vec.double.rgb.ax │ │ ├── array_unpack.vec.double.xyz.ax │ │ ├── array_unpack.vec.float.ax │ │ ├── array_unpack.vec.float.rgb.ax │ │ ├── array_unpack.vec.float.xyz.ax │ │ ├── array_unpack.vec.int.ax │ │ ├── array_unpack.vec.int.rgb.ax │ │ └── array_unpack.vec.int.xyz.ax │ ├── TestAssign.cc │ ├── TestAssign │ │ ├── assign.bool.ax │ │ ├── assign.double.ax │ │ ├── assign.float.ax │ │ ├── assign.int32.ax │ │ ├── assign.int64.ax │ │ ├── assign.mat3d.ax │ │ ├── assign.mat3f.ax │ │ ├── assign.mat4d.ax │ │ ├── assign.mat4f.ax │ │ ├── assign.string.ax │ │ ├── assign.vec2d.ax │ │ ├── assign.vec2f.ax │ │ ├── assign.vec2i.ax │ │ ├── assign.vec3d.ax │ │ ├── assign.vec3f.ax │ │ ├── assign.vec3i.ax │ │ ├── assign.vec4d.ax │ │ ├── assign.vec4f.ax │ │ ├── assign.vec4i.ax │ │ ├── assign_compound.bool.ax │ │ ├── assign_compound.double.ax │ │ ├── assign_compound.float.ax │ │ ├── assign_compound.int32.ax │ │ ├── assign_compound.int64.ax │ │ ├── assign_compound.mat3d.ax │ │ ├── assign_compound.mat3f.ax │ │ ├── assign_compound.mat4d.ax │ │ ├── assign_compound.mat4f.ax │ │ ├── assign_compound.string.ax │ │ ├── assign_compound.vec2d.ax │ │ ├── assign_compound.vec2f.ax │ │ ├── assign_compound.vec2i.ax │ │ ├── assign_compound.vec3d.ax │ │ ├── assign_compound.vec3f.ax │ │ ├── assign_compound.vec3i.ax │ │ ├── assign_compound.vec4d.ax │ │ ├── assign_compound.vec4f.ax │ │ ├── assign_compound.vec4i.ax │ │ ├── assign_implicit_container.mat3d.ax │ │ ├── assign_implicit_container.mat3f.ax │ │ ├── assign_implicit_container.mat4d.ax │ │ ├── assign_implicit_container.mat4f.ax │ │ ├── assign_implicit_container.vec2d.ax │ │ ├── assign_implicit_container.vec2f.ax │ │ ├── assign_implicit_container.vec2i.ax │ │ ├── assign_implicit_container.vec3d.ax │ │ ├── assign_implicit_container.vec3f.ax │ │ ├── assign_implicit_container.vec3i.ax │ │ ├── assign_implicit_container.vec4d.ax │ │ ├── assign_implicit_container.vec4f.ax │ │ ├── assign_implicit_container.vec4i.ax │ │ ├── assign_implicit_container_scalar.bool.ax │ │ ├── assign_implicit_container_scalar.double.ax │ │ ├── assign_implicit_container_scalar.float.ax │ │ ├── assign_implicit_container_scalar.int32.ax │ │ ├── assign_implicit_container_scalar.int64.ax │ │ ├── assign_implicit_scalar.bool.ax │ │ ├── assign_implicit_scalar.double.ax │ │ ├── assign_implicit_scalar.float.ax │ │ ├── assign_implicit_scalar.int32.ax │ │ ├── assign_implicit_scalar.int64.ax │ │ └── assign_scoped.float.ax │ ├── TestBinary.cc │ ├── TestBinary │ │ ├── binary_bitand.ax │ │ ├── binary_bitor.ax │ │ ├── binary_bitxor.ax │ │ ├── binary_div.ax │ │ ├── binary_logicaland.ax │ │ ├── binary_logicaland_scircuit.ax │ │ ├── binary_logicalor.ax │ │ ├── binary_logicalor_scircuit.ax │ │ ├── binary_minus.ax │ │ ├── binary_mod.ax │ │ ├── binary_mult.ax │ │ ├── binary_plus.ax │ │ ├── binary_relational_equalsequals.ax │ │ ├── binary_relational_greaterthan.ax │ │ ├── binary_relational_greaterthanequals.ax │ │ ├── binary_relational_lessthan.ax │ │ ├── binary_relational_lessthanequals.ax │ │ ├── binary_relational_notequals.ax │ │ ├── binary_shiftleft.ax │ │ └── binary_shiftright.ax │ ├── TestCast.cc │ ├── TestCast │ │ ├── cast_explicit.bool.ax │ │ ├── cast_explicit.double.ax │ │ ├── cast_explicit.float.ax │ │ ├── cast_explicit.int32.ax │ │ └── cast_explicit.int64.ax │ ├── TestConditional.cc │ ├── TestCrement.cc │ ├── TestCrement │ │ ├── crement_dec.component.ax │ │ ├── crement_dec.double.ax │ │ ├── crement_dec.float.ax │ │ ├── crement_dec.int16.ax │ │ ├── crement_dec.int32.ax │ │ ├── crement_dec.int64.ax │ │ ├── crement_inc.component.ax │ │ ├── crement_inc.double.ax │ │ ├── crement_inc.float.ax │ │ ├── crement_inc.int16.ax │ │ ├── crement_inc.int32.ax │ │ └── crement_inc.int64.ax │ ├── TestDeclare.cc │ ├── TestEmpty.cc │ ├── TestExternals.cc │ ├── TestExternals │ │ ├── external_assign_from.bool.ax │ │ ├── external_assign_from.double.ax │ │ ├── external_assign_from.float.ax │ │ ├── external_assign_from.int32.ax │ │ ├── external_assign_from.int64.ax │ │ ├── external_assign_from.mat3d.ax │ │ ├── external_assign_from.mat3f.ax │ │ ├── external_assign_from.mat4d.ax │ │ ├── external_assign_from.mat4f.ax │ │ ├── external_assign_from.string.ax │ │ ├── external_assign_from.vec2d.ax │ │ ├── external_assign_from.vec2f.ax │ │ ├── external_assign_from.vec2i.ax │ │ ├── external_assign_from.vec3d.ax │ │ ├── external_assign_from.vec3f.ax │ │ ├── external_assign_from.vec3i.ax │ │ ├── external_assign_from.vec4d.ax │ │ ├── external_assign_from.vec4f.ax │ │ └── external_assign_from.vec4i.ax │ ├── TestHarness.cc │ ├── TestHarness.h │ ├── TestKeyword.cc │ ├── TestLoop.cc │ ├── TestStandardFunctions.cc │ ├── TestString.cc │ ├── TestTernary.cc │ ├── TestUnary.cc │ ├── TestVDBFunctions.cc │ └── TestWorldSpaceAccessors.cc │ ├── main.cc │ ├── snippets │ ├── conditional │ │ ├── conditionalErrors │ │ ├── conditionalIfWithinElse │ │ ├── conditionalScopingStatement │ │ ├── conditionalSimpleElseIf │ │ └── conditionalSimpleStatement │ ├── declare │ │ ├── declareAmbiguousScalarAttributes │ │ ├── declareAmbiguousScalarExternals │ │ ├── declareAmbiguousVectorAttributes │ │ ├── declareAmbiguousVectorExternals │ │ ├── declareAttributes │ │ ├── declareAttributesVolume │ │ ├── declareLocalVariables │ │ ├── declareLocalVectorVariables │ │ ├── declareNewVectorAttributes │ │ ├── declareVectorAttributeImplicit │ │ └── declareVectorAttributes │ ├── empty │ │ └── empty │ ├── function │ │ ├── abs │ │ ├── acos │ │ ├── asin │ │ ├── atan │ │ ├── atan2 │ │ ├── atof │ │ ├── atoi │ │ ├── cbrt │ │ ├── clamp │ │ ├── cosh │ │ ├── cross │ │ ├── curlnoise │ │ ├── curlsimplexnoise │ │ ├── determinant │ │ ├── diag │ │ ├── dot │ │ ├── euclideanmod │ │ ├── external │ │ ├── fit │ │ ├── floormod │ │ ├── hash │ │ ├── identity3 │ │ ├── identity4 │ │ ├── intrinsic │ │ ├── length │ │ ├── lengthsq │ │ ├── lerp │ │ ├── max │ │ ├── min │ │ ├── noise │ │ ├── normalize │ │ ├── polardecompose │ │ ├── postscale │ │ ├── pow │ │ ├── prescale │ │ ├── pretransform │ │ ├── print │ │ ├── rand │ │ ├── rand32 │ │ ├── sign │ │ ├── signbit │ │ ├── simplexnoise │ │ ├── sinh │ │ ├── svd │ │ ├── tan │ │ ├── tanh │ │ ├── trace │ │ ├── transform │ │ ├── transpose │ │ └── truncatemod │ ├── keyword │ │ ├── conditionalReturn │ │ ├── doWhileLoopKeywords │ │ ├── forLoopKeywords │ │ ├── returnBranchIf │ │ ├── returnBranchLoop │ │ ├── simpleReturn │ │ └── whileLoopKeywords │ ├── loop │ │ ├── doWhileLoop │ │ ├── forLoop │ │ ├── loopErrors │ │ ├── loopOverflow │ │ └── whileLoop │ ├── string │ │ ├── assignCompound │ │ ├── assignFromAttributes │ │ ├── assignFromLocals │ │ ├── assignNewOverwrite │ │ ├── binaryConcat │ │ └── declare │ ├── ternary │ │ ├── ternary │ │ ├── ternaryErrors │ │ └── ternaryVoid │ ├── unary │ │ ├── unaryBitwiseNot │ │ ├── unaryNegate │ │ ├── unaryNot │ │ └── unaryVector │ ├── vdb_functions │ │ ├── addremovefromgroup │ │ ├── deletepoint │ │ ├── getcoord │ │ ├── getvoxelpws │ │ └── ingroup │ └── worldspace │ │ ├── worldSpaceAssign │ │ ├── worldSpaceAssignComponent │ │ ├── worldSpaceAssignFromP │ │ ├── worldSpaceDecrementComponentByZero │ │ ├── worldSpaceDivideComponentByOne │ │ ├── worldSpaceIncrement │ │ ├── worldSpaceIncrementComponent │ │ ├── worldSpaceIncrementComponentByZero │ │ └── worldSpaceMultiplyComponentByOne │ └── util.h └── openvdb_ax_houdini ├── CMakeLists.txt ├── SOP_OpenVDB_AX.cc └── ax └── HoudiniAXUtils.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/whitespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/.github/workflows/whitespace.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYRIGHT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/COPYRIGHT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/README.md -------------------------------------------------------------------------------- /ci/build_ax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/ci/build_ax.sh -------------------------------------------------------------------------------- /ci/extract_test_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/ci/extract_test_examples.sh -------------------------------------------------------------------------------- /ci/install_llvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/ci/install_llvm.sh -------------------------------------------------------------------------------- /ci/install_macos_ax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/ci/install_macos_ax.sh -------------------------------------------------------------------------------- /ci/install_openvdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/ci/install_openvdb.sh -------------------------------------------------------------------------------- /cmake/backports/FindBlosc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/cmake/backports/FindBlosc.cmake -------------------------------------------------------------------------------- /cmake/backports/FindCppUnit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/cmake/backports/FindCppUnit.cmake -------------------------------------------------------------------------------- /cmake/backports/FindIlmBase.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/cmake/backports/FindIlmBase.cmake -------------------------------------------------------------------------------- /cmake/backports/FindLog4cplus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/cmake/backports/FindLog4cplus.cmake -------------------------------------------------------------------------------- /cmake/backports/FindOpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/cmake/backports/FindOpenEXR.cmake -------------------------------------------------------------------------------- /cmake/backports/FindOpenVDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/cmake/backports/FindOpenVDB.cmake -------------------------------------------------------------------------------- /cmake/backports/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/cmake/backports/FindTBB.cmake -------------------------------------------------------------------------------- /cmake/backports/OpenVDBHoudiniSetup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/cmake/backports/OpenVDBHoudiniSetup.cmake -------------------------------------------------------------------------------- /cmake/backports/OpenVDBUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/cmake/backports/OpenVDBUtils.cmake -------------------------------------------------------------------------------- /openvdb_ax/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/CMakeLists.txt -------------------------------------------------------------------------------- /openvdb_ax/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/Exceptions.h -------------------------------------------------------------------------------- /openvdb_ax/ast/AST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/ast/AST.h -------------------------------------------------------------------------------- /openvdb_ax/ast/Parse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/ast/Parse.cc -------------------------------------------------------------------------------- /openvdb_ax/ast/Parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/ast/Parse.h -------------------------------------------------------------------------------- /openvdb_ax/ast/PrintTree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/ast/PrintTree.cc -------------------------------------------------------------------------------- /openvdb_ax/ast/PrintTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/ast/PrintTree.h -------------------------------------------------------------------------------- /openvdb_ax/ast/Scanners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/ast/Scanners.cc -------------------------------------------------------------------------------- /openvdb_ax/ast/Scanners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/ast/Scanners.h -------------------------------------------------------------------------------- /openvdb_ax/ast/Tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/ast/Tokens.h -------------------------------------------------------------------------------- /openvdb_ax/ast/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/ast/Visitor.h -------------------------------------------------------------------------------- /openvdb_ax/ax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/ax.cc -------------------------------------------------------------------------------- /openvdb_ax/ax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/ax.h -------------------------------------------------------------------------------- /openvdb_ax/cmd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/cmd/CMakeLists.txt -------------------------------------------------------------------------------- /openvdb_ax/cmd/openvdb_ax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/cmd/openvdb_ax.cc -------------------------------------------------------------------------------- /openvdb_ax/codegen/ComputeGenerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/ComputeGenerator.cc -------------------------------------------------------------------------------- /openvdb_ax/codegen/ComputeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/ComputeGenerator.h -------------------------------------------------------------------------------- /openvdb_ax/codegen/ConstantFolding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/ConstantFolding.h -------------------------------------------------------------------------------- /openvdb_ax/codegen/FunctionRegistry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/FunctionRegistry.cc -------------------------------------------------------------------------------- /openvdb_ax/codegen/FunctionRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/FunctionRegistry.h -------------------------------------------------------------------------------- /openvdb_ax/codegen/FunctionTypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/FunctionTypes.cc -------------------------------------------------------------------------------- /openvdb_ax/codegen/FunctionTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/FunctionTypes.h -------------------------------------------------------------------------------- /openvdb_ax/codegen/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/Functions.h -------------------------------------------------------------------------------- /openvdb_ax/codegen/PointComputeGenerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/PointComputeGenerator.cc -------------------------------------------------------------------------------- /openvdb_ax/codegen/PointComputeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/PointComputeGenerator.h -------------------------------------------------------------------------------- /openvdb_ax/codegen/PointFunctions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/PointFunctions.cc -------------------------------------------------------------------------------- /openvdb_ax/codegen/PointLeafLocalData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/PointLeafLocalData.h -------------------------------------------------------------------------------- /openvdb_ax/codegen/StandardFunctions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/StandardFunctions.cc -------------------------------------------------------------------------------- /openvdb_ax/codegen/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/SymbolTable.h -------------------------------------------------------------------------------- /openvdb_ax/codegen/Types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/Types.cc -------------------------------------------------------------------------------- /openvdb_ax/codegen/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/Types.h -------------------------------------------------------------------------------- /openvdb_ax/codegen/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/Utils.h -------------------------------------------------------------------------------- /openvdb_ax/codegen/VolumeComputeGenerator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/VolumeComputeGenerator.cc -------------------------------------------------------------------------------- /openvdb_ax/codegen/VolumeComputeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/VolumeComputeGenerator.h -------------------------------------------------------------------------------- /openvdb_ax/codegen/VolumeFunctions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/codegen/VolumeFunctions.cc -------------------------------------------------------------------------------- /openvdb_ax/compiler/AttributeRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/compiler/AttributeRegistry.h -------------------------------------------------------------------------------- /openvdb_ax/compiler/Compiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/compiler/Compiler.cc -------------------------------------------------------------------------------- /openvdb_ax/compiler/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/compiler/Compiler.h -------------------------------------------------------------------------------- /openvdb_ax/compiler/CompilerOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/compiler/CompilerOptions.h -------------------------------------------------------------------------------- /openvdb_ax/compiler/CustomData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/compiler/CustomData.h -------------------------------------------------------------------------------- /openvdb_ax/compiler/Logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/compiler/Logger.cc -------------------------------------------------------------------------------- /openvdb_ax/compiler/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/compiler/Logger.h -------------------------------------------------------------------------------- /openvdb_ax/compiler/PointExecutable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/compiler/PointExecutable.cc -------------------------------------------------------------------------------- /openvdb_ax/compiler/PointExecutable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/compiler/PointExecutable.h -------------------------------------------------------------------------------- /openvdb_ax/compiler/VolumeExecutable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/compiler/VolumeExecutable.cc -------------------------------------------------------------------------------- /openvdb_ax/compiler/VolumeExecutable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/compiler/VolumeExecutable.h -------------------------------------------------------------------------------- /openvdb_ax/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/doc/CMakeLists.txt -------------------------------------------------------------------------------- /openvdb_ax/doc/ax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/doc/ax.txt -------------------------------------------------------------------------------- /openvdb_ax/doc/axcplusplus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/doc/axcplusplus.txt -------------------------------------------------------------------------------- /openvdb_ax/doc/axexamples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/doc/axexamples.txt -------------------------------------------------------------------------------- /openvdb_ax/doc/axfunctionlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/doc/axfunctionlist.txt -------------------------------------------------------------------------------- /openvdb_ax/doc/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/doc/doc.txt -------------------------------------------------------------------------------- /openvdb_ax/doc/openvdbaxbuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/doc/openvdbaxbuild.txt -------------------------------------------------------------------------------- /openvdb_ax/grammar/axlexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/grammar/axlexer.l -------------------------------------------------------------------------------- /openvdb_ax/grammar/axparser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/grammar/axparser.y -------------------------------------------------------------------------------- /openvdb_ax/grammar/generated/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/grammar/generated/README -------------------------------------------------------------------------------- /openvdb_ax/grammar/generated/axlexer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/grammar/generated/axlexer.cc -------------------------------------------------------------------------------- /openvdb_ax/grammar/generated/axparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/grammar/generated/axparser.cc -------------------------------------------------------------------------------- /openvdb_ax/grammar/generated/axparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/grammar/generated/axparser.h -------------------------------------------------------------------------------- /openvdb_ax/math/OpenSimplexNoise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/math/OpenSimplexNoise.cc -------------------------------------------------------------------------------- /openvdb_ax/math/OpenSimplexNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/math/OpenSimplexNoise.h -------------------------------------------------------------------------------- /openvdb_ax/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/python/CMakeLists.txt -------------------------------------------------------------------------------- /openvdb_ax/python/pyCompiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/python/pyCompiler.cc -------------------------------------------------------------------------------- /openvdb_ax/python/pyCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/python/pyCompiler.h -------------------------------------------------------------------------------- /openvdb_ax/python/pyOpenVDBAX.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/python/pyOpenVDBAX.cc -------------------------------------------------------------------------------- /openvdb_ax/python/pyPointExecutable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/python/pyPointExecutable.cc -------------------------------------------------------------------------------- /openvdb_ax/python/pyPointExecutable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/python/pyPointExecutable.h -------------------------------------------------------------------------------- /openvdb_ax/python/pyVolumeExecutable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/python/pyVolumeExecutable.cc -------------------------------------------------------------------------------- /openvdb_ax/python/pyVolumeExecutable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/python/pyVolumeExecutable.h -------------------------------------------------------------------------------- /openvdb_ax/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/CMakeLists.txt -------------------------------------------------------------------------------- /openvdb_ax/test/ast/TestPrinters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/ast/TestPrinters.cc -------------------------------------------------------------------------------- /openvdb_ax/test/ast/TestScanners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/ast/TestScanners.cc -------------------------------------------------------------------------------- /openvdb_ax/test/backend/TestComputeGeneratorFailures.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/backend/TestComputeGeneratorFailures.cc -------------------------------------------------------------------------------- /openvdb_ax/test/backend/TestFunctionGroup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/backend/TestFunctionGroup.cc -------------------------------------------------------------------------------- /openvdb_ax/test/backend/TestFunctionRegistry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/backend/TestFunctionRegistry.cc -------------------------------------------------------------------------------- /openvdb_ax/test/backend/TestFunctionTypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/backend/TestFunctionTypes.cc -------------------------------------------------------------------------------- /openvdb_ax/test/backend/TestLogger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/backend/TestLogger.cc -------------------------------------------------------------------------------- /openvdb_ax/test/backend/TestSymbolTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/backend/TestSymbolTable.cc -------------------------------------------------------------------------------- /openvdb_ax/test/backend/TestTypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/backend/TestTypes.cc -------------------------------------------------------------------------------- /openvdb_ax/test/backend/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/backend/util.h -------------------------------------------------------------------------------- /openvdb_ax/test/compiler/TestAXRun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/compiler/TestAXRun.cc -------------------------------------------------------------------------------- /openvdb_ax/test/compiler/TestPointExecutable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/compiler/TestPointExecutable.cc -------------------------------------------------------------------------------- /openvdb_ax/test/compiler/TestVolumeExecutable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/compiler/TestVolumeExecutable.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestArrayPack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestArrayPack.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestArrayUnpackNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestArrayUnpackNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestAssignExpressionNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestAssignExpressionNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestAttributeNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestAttributeNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestBinaryOperatorNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestBinaryOperatorNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestCastNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestCastNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestCommaOperator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestCommaOperator.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestConditionalStatementNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestConditionalStatementNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestCrementNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestCrementNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestDeclareLocalNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestDeclareLocalNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestExternalVariableNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestExternalVariableNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestFunctionCallNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestFunctionCallNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestKeywordNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestKeywordNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestLocalNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestLocalNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestLoopNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestLoopNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestStatementListNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestStatementListNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestSyntaxFailures.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestSyntaxFailures.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestTernaryOperatorNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestTernaryOperatorNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestUnaryOperatorNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestUnaryOperatorNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/frontend/TestValueNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/frontend/TestValueNode.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/CompareGrids.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/CompareGrids.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/CompareGrids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/CompareGrids.h -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack/array_unpack.mat.double.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack/array_unpack.mat.double.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack/array_unpack.mat.float.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack/array_unpack.mat.float.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.double.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.double.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.double.rgb.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.double.rgb.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.double.xyz.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.double.xyz.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.float.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.float.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.float.rgb.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.float.rgb.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.float.xyz.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.float.xyz.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.int.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.int.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.int.rgb.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.int.rgb.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.int.xyz.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestArrayUnpack/array_unpack.vec.int.xyz.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.bool.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.bool.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.double.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.double.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.float.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.float.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.int32.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.int32.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.int64.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.int64.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.mat3d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.mat3d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.mat3f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.mat3f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.mat4d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.mat4d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.mat4f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.mat4f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.string.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.string.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.vec2d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.vec2d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.vec2f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.vec2f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.vec2i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.vec2i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.vec3d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.vec3d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.vec3f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.vec3f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.vec3i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.vec3i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.vec4d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.vec4d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.vec4f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.vec4f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign.vec4i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign.vec4i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.bool.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.bool.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.double.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.double.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.float.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.float.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.int32.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.int32.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.int64.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.int64.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.mat3d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.mat3d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.mat3f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.mat3f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.mat4d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.mat4d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.mat4f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.mat4f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.string.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.string.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.vec2d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.vec2d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.vec2f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.vec2f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.vec2i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.vec2i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.vec3d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.vec3d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.vec3f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.vec3f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.vec3i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.vec3i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.vec4d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.vec4d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.vec4f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.vec4f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_compound.vec4i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_compound.vec4i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.mat3d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.mat3d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.mat3f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.mat3f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.mat4d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.mat4d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.mat4f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.mat4f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec2d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec2d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec2f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec2f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec2i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec2i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec3d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec3d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec3f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec3f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec3i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec3i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec4d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec4d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec4f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec4f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec4i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container.vec4i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container_scalar.bool.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container_scalar.bool.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container_scalar.double.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container_scalar.double.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container_scalar.float.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container_scalar.float.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container_scalar.int32.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container_scalar.int32.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_container_scalar.int64.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_container_scalar.int64.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_scalar.bool.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_scalar.bool.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_scalar.double.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_scalar.double.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_scalar.float.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_scalar.float.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_scalar.int32.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_scalar.int32.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_implicit_scalar.int64.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_implicit_scalar.int64.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestAssign/assign_scoped.float.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestAssign/assign_scoped.float.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_bitand.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_bitand.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_bitor.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_bitor.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_bitxor.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_bitxor.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_div.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_div.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_logicaland.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_logicaland.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_logicaland_scircuit.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_logicaland_scircuit.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_logicalor.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_logicalor.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_logicalor_scircuit.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_logicalor_scircuit.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_minus.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_minus.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_mod.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_mod.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_mult.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_mult.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_plus.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_plus.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_relational_equalsequals.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_relational_equalsequals.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_relational_greaterthan.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_relational_greaterthan.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_relational_greaterthanequals.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_relational_greaterthanequals.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_relational_lessthan.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_relational_lessthan.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_relational_lessthanequals.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_relational_lessthanequals.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_relational_notequals.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_relational_notequals.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_shiftleft.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_shiftleft.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestBinary/binary_shiftright.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestBinary/binary_shiftright.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCast.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCast/cast_explicit.bool.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCast/cast_explicit.bool.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCast/cast_explicit.double.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCast/cast_explicit.double.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCast/cast_explicit.float.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCast/cast_explicit.float.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCast/cast_explicit.int32.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCast/cast_explicit.int32.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCast/cast_explicit.int64.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCast/cast_explicit.int64.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestConditional.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestConditional.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_dec.component.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_dec.component.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_dec.double.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_dec.double.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_dec.float.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_dec.float.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_dec.int16.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_dec.int16.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_dec.int32.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_dec.int32.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_dec.int64.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_dec.int64.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_inc.component.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_inc.component.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_inc.double.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_inc.double.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_inc.float.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_inc.float.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_inc.int16.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_inc.int16.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_inc.int32.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_inc.int32.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestCrement/crement_inc.int64.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestCrement/crement_inc.int64.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestDeclare.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestDeclare.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestEmpty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestEmpty.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.bool.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.bool.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.double.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.double.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.float.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.float.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.int32.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.int32.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.int64.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.int64.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.mat3d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.mat3d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.mat3f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.mat3f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.mat4d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.mat4d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.mat4f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.mat4f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.string.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.string.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.vec2d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.vec2d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.vec2f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.vec2f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.vec2i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.vec2i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.vec3d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.vec3d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.vec3f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.vec3f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.vec3i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.vec3i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.vec4d.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.vec4d.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.vec4f.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.vec4f.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestExternals/external_assign_from.vec4i.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestExternals/external_assign_from.vec4i.ax -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestHarness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestHarness.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestHarness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestHarness.h -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestKeyword.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestKeyword.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestLoop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestLoop.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestStandardFunctions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestStandardFunctions.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestString.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestString.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestTernary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestTernary.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestUnary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestUnary.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestVDBFunctions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestVDBFunctions.cc -------------------------------------------------------------------------------- /openvdb_ax/test/integration/TestWorldSpaceAccessors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/integration/TestWorldSpaceAccessors.cc -------------------------------------------------------------------------------- /openvdb_ax/test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/main.cc -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/conditional/conditionalErrors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/conditional/conditionalErrors -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/conditional/conditionalIfWithinElse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/conditional/conditionalIfWithinElse -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/conditional/conditionalScopingStatement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/conditional/conditionalScopingStatement -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/conditional/conditionalSimpleElseIf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/conditional/conditionalSimpleElseIf -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/conditional/conditionalSimpleStatement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/conditional/conditionalSimpleStatement -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/declare/declareAmbiguousScalarAttributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/declare/declareAmbiguousScalarAttributes -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/declare/declareAmbiguousScalarExternals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/declare/declareAmbiguousScalarExternals -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/declare/declareAmbiguousVectorAttributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/declare/declareAmbiguousVectorAttributes -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/declare/declareAmbiguousVectorExternals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/declare/declareAmbiguousVectorExternals -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/declare/declareAttributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/declare/declareAttributes -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/declare/declareAttributesVolume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/declare/declareAttributesVolume -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/declare/declareLocalVariables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/declare/declareLocalVariables -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/declare/declareLocalVectorVariables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/declare/declareLocalVectorVariables -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/declare/declareNewVectorAttributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/declare/declareNewVectorAttributes -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/declare/declareVectorAttributeImplicit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/declare/declareVectorAttributeImplicit -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/declare/declareVectorAttributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/declare/declareVectorAttributes -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/empty/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/abs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/abs -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/acos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/acos -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/asin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/asin -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/atan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/atan -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/atan2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/atan2 -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/atof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/atof -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/atoi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/atoi -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/cbrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/cbrt -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/clamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/clamp -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/cosh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/cosh -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/cross -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/curlnoise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/curlnoise -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/curlsimplexnoise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/curlsimplexnoise -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/determinant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/determinant -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/diag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/diag -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/dot -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/euclideanmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/euclideanmod -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/external: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/external -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/fit -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/floormod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/floormod -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/hash -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/identity3: -------------------------------------------------------------------------------- 1 | mat3d@test = identity3(); 2 | -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/identity4: -------------------------------------------------------------------------------- 1 | mat4d@test = identity4(); 2 | -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/intrinsic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/intrinsic -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/length: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/length -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/lengthsq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/lengthsq -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/lerp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/lerp -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/max: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/max -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/min: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/min -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/noise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/noise -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/normalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/normalize -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/polardecompose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/polardecompose -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/postscale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/postscale -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/pow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/pow -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/prescale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/prescale -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/pretransform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/pretransform -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/print -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/rand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/rand -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/rand32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/rand32 -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/sign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/sign -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/signbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/signbit -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/simplexnoise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/simplexnoise -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/sinh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/sinh -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/svd -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/tan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/tan -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/tanh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/tanh -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/trace -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/transform -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/transpose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/transpose -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/function/truncatemod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/function/truncatemod -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/keyword/conditionalReturn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/keyword/conditionalReturn -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/keyword/doWhileLoopKeywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/keyword/doWhileLoopKeywords -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/keyword/forLoopKeywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/keyword/forLoopKeywords -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/keyword/returnBranchIf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/keyword/returnBranchIf -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/keyword/returnBranchLoop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/keyword/returnBranchLoop -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/keyword/simpleReturn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/keyword/simpleReturn -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/keyword/whileLoopKeywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/keyword/whileLoopKeywords -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/loop/doWhileLoop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/loop/doWhileLoop -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/loop/forLoop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/loop/forLoop -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/loop/loopErrors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/loop/loopErrors -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/loop/loopOverflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/loop/loopOverflow -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/loop/whileLoop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/loop/whileLoop -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/string/assignCompound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/string/assignCompound -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/string/assignFromAttributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/string/assignFromAttributes -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/string/assignFromLocals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/string/assignFromLocals -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/string/assignNewOverwrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/string/assignNewOverwrite -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/string/binaryConcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/string/binaryConcat -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/string/declare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/string/declare -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/ternary/ternary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/ternary/ternary -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/ternary/ternaryErrors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/ternary/ternaryErrors -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/ternary/ternaryVoid: -------------------------------------------------------------------------------- 1 | 2 | bool b = false; 3 | b ? deletepoint() : addtogroup("notdead"); 4 | -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/unary/unaryBitwiseNot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/unary/unaryBitwiseNot -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/unary/unaryNegate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/unary/unaryNegate -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/unary/unaryNot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/unary/unaryNot -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/unary/unaryVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/unary/unaryVector -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/vdb_functions/addremovefromgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/vdb_functions/addremovefromgroup -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/vdb_functions/deletepoint: -------------------------------------------------------------------------------- 1 | deletepoint(); 2 | -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/vdb_functions/getcoord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/vdb_functions/getcoord -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/vdb_functions/getvoxelpws: -------------------------------------------------------------------------------- 1 | vector@a = getvoxelpws(); 2 | -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/vdb_functions/ingroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/vdb_functions/ingroup -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/worldspace/worldSpaceAssign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/worldspace/worldSpaceAssign -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/worldspace/worldSpaceAssignComponent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/worldspace/worldSpaceAssignComponent -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/worldspace/worldSpaceAssignFromP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/worldspace/worldSpaceAssignFromP -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/worldspace/worldSpaceDecrementComponentByZero: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/worldspace/worldSpaceDecrementComponentByZero -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/worldspace/worldSpaceDivideComponentByOne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/worldspace/worldSpaceDivideComponentByOne -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/worldspace/worldSpaceIncrement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/worldspace/worldSpaceIncrement -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/worldspace/worldSpaceIncrementComponent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/worldspace/worldSpaceIncrementComponent -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/worldspace/worldSpaceIncrementComponentByZero: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/worldspace/worldSpaceIncrementComponentByZero -------------------------------------------------------------------------------- /openvdb_ax/test/snippets/worldspace/worldSpaceMultiplyComponentByOne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/snippets/worldspace/worldSpaceMultiplyComponentByOne -------------------------------------------------------------------------------- /openvdb_ax/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax/test/util.h -------------------------------------------------------------------------------- /openvdb_ax_houdini/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax_houdini/CMakeLists.txt -------------------------------------------------------------------------------- /openvdb_ax_houdini/SOP_OpenVDB_AX.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax_houdini/SOP_OpenVDB_AX.cc -------------------------------------------------------------------------------- /openvdb_ax_houdini/ax/HoudiniAXUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/openvdb_ax/HEAD/openvdb_ax_houdini/ax/HoudiniAXUtils.h --------------------------------------------------------------------------------