ivp_liquid_surface_descript.hxx
来自「hl2 source code. Do not use it illegal.」· HXX 代码 · 共 34 行
HXX
34 行
// Copyright (C) Ipion Software GmbH 1999-2000. All rights reserved.
//IVP_EXPORT_PUBLIC
#ifndef WIN32
# pragma interface
#endif
class IVP_Liquid_Surface_Descriptor {
public:
virtual void calc_liquid_surface( IVP_Environment *environment,
IVP_Core *core,
IVP_U_Float_Hesse *surface_normal_out,
IVP_U_Float_Point *abs_speed_of_current_out) = 0;
};
class IVP_Liquid_Surface_Descriptor_Simple : public IVP_Liquid_Surface_Descriptor {
public:
IVP_U_Float_Hesse surface;
IVP_U_Float_Point abs_speed_of_current;
public:
void calc_liquid_surface( IVP_Environment *environment,
IVP_Core *core,
IVP_U_Float_Hesse *surface_normal_out,
IVP_U_Float_Point *abs_speed_of_current_out);
IVP_Liquid_Surface_Descriptor_Simple(const IVP_U_Float_Hesse *surface_in, const IVP_U_Float_Point *abs_speed_of_current_in);
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?