mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 15:06:22 +01:00
4 lines
90 B
Text
4 lines
90 B
Text
|
function Complex(_real = 0, _imaginary = 0) constructor {
|
||
|
re = _real;
|
||
|
im = _imaginary;
|
||
|
}
|