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.
nmWATI/Include/nmNum/nmData/nmDefines.h

18 lines
363 B
C

#pragma once
// 数值试井绘图对象类型
enum NM_Obj_Type {
NOT_Point = 0, //点
NOT_Line, //线
NOT_Polygon, //多边形
NOT_Other, //其它
NOT_UNKNWON
};
// 多相流的类型
enum NM_PHASE_TYPE {
PHASE_OIL, // 油
PHASE_GAS, // 气
PHASE_WATER, // 水
PHASE_UNKNOWN // 其它
};