Equivalent of Oval Graphic Angles?
Posted: Fri Mar 13, 2015 1:25 pm
With oval graphics in LiveCode, we have startAngle and arcAngle properties. Are there equivalent properties in LC Builder?
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Code: Select all
// Create an elliptical arc path
variable tPath
put arc path centered at point [100,100] with radii [100,75] from 0 to 270 into tPath
// Create a circular arc path
variable tPath
put arc path centered at point [100,100] with radius 100 from 0 to 270 into tPath
// Create an elliptical sector path
variable tPath
put sector path centered at point [100,100] with radii [100,75] from 0 to 270 into tPath
// Create a circular sector path
variable tPath
put sector path centered at point [100,100] with radius 100 from 0 to 270 into tPath
// Create an elliptical segment path
variable tPath
put segment path centered at point [100,100] with radii [100,75] from 0 to 270 into tPath
// Create a circular segment path
variable tPath
put segment path centered at point [100,100] with radius 100 from 0 to 270 into tPath