Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
Functions.register({
	name: "maxOf",
	fn: function(value1, value2)
	{
		return Math.max(value1, <= value2);
	},
	parameterTypes: ["float", FloatType]
});

...