Search ProofOfProgress Blog

Tuesday, March 22, 2011

MaxScript Snippet: BitArray To Array


theBITS = #{2..5,7}
theARRAY = theBITS as array;

for i = 1 to theARRAY.count do(
ist = i as string;
print("[" + ist + "]==" + theARRAY[i] as string);
)--[x]

No comments:

Post a Comment