mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
19 lines
274 B
C#
19 lines
274 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// CoordinateSystem enum
|
|
/// </summary>
|
|
public enum CoordinateSystem
|
|
{
|
|
/// <summary>
|
|
/// Cartesian CoordinateSystem
|
|
/// </summary>
|
|
Cartesian,
|
|
|
|
/// <summary>
|
|
/// Polar CoordinateSystem
|
|
/// </summary>
|
|
Polar
|
|
}
|
|
|