mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
4 lines
90 B
Plaintext
4 lines
90 B
Plaintext
|
function Complex(_real = 0, _imaginary = 0) constructor {
|
||
|
re = _real;
|
||
|
im = _imaginary;
|
||
|
}
|