We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Operator overloading is needed for using/manipulating parameters (see also issue #24)...
For example one might have
var a = range([0,0,0], [10,15,0.8]); var b = range(2, 4); box({dimensions: b * a})
where b * a is actually a relatively complicated operation that will probably be translated to some overloaded operator such as mul(b,a).
b * a
mul(b,a)
Nevermind this, one might even want operations like sqrt(b) and cross(a,r)...
sqrt(b)
cross(a,r)
The text was updated successfully, but these errors were encountered:
rehno-lindeque
No branches or pull requests
Operator overloading is needed for using/manipulating parameters (see also issue #24)...
For example one might have
where
b * a
is actually a relatively complicated operation that will probably be translated to some overloaded operator such asmul(b,a)
.Nevermind this, one might even want operations like
sqrt(b)
andcross(a,r)
...The text was updated successfully, but these errors were encountered: