Pixilang 3.8.2

Pixilang programming language
Post Reply
User avatar
NightRadio
Site Admin
Posts: 3941
Joined: Fri Jan 23, 2004 12:28 am
Location: Ekaterinburg. Russia
Contact:

Pixilang 3.8.2

Post by NightRadio »

Pixilang 3.8.2 is out!
https://warmplace.ru/soft/pixilang

What is new:
  • additional loop operator for( initialization ; condition ; increment ) { loop body }; example: for( i = 0; i < 4; i + 1 ) { printf( "i=%d\n", i ) };
  • new function: atan2($y,$x) - angle (in radians) between the positive X axis and the vector ($x,$y);
  • gl_bind_framebuffer(): additional optional parameters: flags, viewport x,y,width,height;
  • WINDOW_ZSIZE const - window depth (for OpenGL); sets the range of Z values: from -WINDOW_ZSIZE (far) to WINDOW_ZSIZE (near);
  • sv_save() and sv_fsave() functions are now available in source code as well;
  • updated SunVox engine (2.0c);
  • fixed a bug in fft() (reversed positive and negative frequencies);
  • source code is available again;
  • updated examples and documentation;
  • bug fixes.
Post Reply