Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
28
Task/Introspection/MAXScript/introspection.max
Normal file
28
Task/Introspection/MAXScript/introspection.max
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
fn computeAbsBloop bloop =
|
||||
(
|
||||
versionNumber = maxVersion()
|
||||
|
||||
if versionNumber[1] < 9000 then
|
||||
(
|
||||
print "Max version 9 required"
|
||||
return false
|
||||
)
|
||||
|
||||
if bloop == undefined then
|
||||
(
|
||||
print "Bloop is undefined"
|
||||
return false
|
||||
)
|
||||
|
||||
try
|
||||
(
|
||||
abs bloop
|
||||
)
|
||||
catch
|
||||
(
|
||||
print "No function abs"
|
||||
false
|
||||
)
|
||||
)
|
||||
|
||||
computeAbsBloop -17
|
||||
Loading…
Add table
Add a link
Reference in a new issue