mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-27 15:36:16 +01:00
9 lines
230 B
Text
9 lines
230 B
Text
|
function __ray(origin, direction) constructor {
|
||
|
self.origin = origin;
|
||
|
self.direction = direction.normalize();
|
||
|
|
||
|
static sampleDistance = function(t) {
|
||
|
gml_pragma("forceinline");
|
||
|
return origin.add(direction.multiply(t));
|
||
|
}
|
||
|
}
|