You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
449 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GeoSigmaDrawLib
{
class StatusDefine
{
public static int STATUS_CODE_FAILED = -1;
public static int STATUS_CODE_SUCCESS = 0;
//区域填充状态码
public static int STATUS_CODE_SOLID_NO_CURVE = 1000;
public static int STATUS_CODE_SOLID_CURVE_NOTCLOSED = 1001;
}
}