Pixel-Composer/scripts/complex_function/complex_function.gml

4 lines
90 B
Plaintext
Raw Normal View History

2023-05-16 21:28:16 +02:00
function Complex(_real = 0, _imaginary = 0) constructor {
re = _real;
im = _imaginary;
}