⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ivp_liquid_surface_descript.hxx

📁 hl2 source code. Do not use it illegal.
💻 HXX
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -