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.

15 lines
279 B
C

#pragma once
struct SFillPar{
SFillPar()
{
m_FillGap = 0.01;//填充间隔
m_FillAngle = 90;//填充角度(0~90)(360 度角)
bFill = false;//是否填充
}
bool bFill;//是否填充
double m_FillGap;//填充间隔
double m_FillAngle;//填充角度(0~90)(360 度角)
};