Tiny Graphics Interfaces
载入中...
搜索中...
未找到
tgi.hpp 文件参考

Tiny Graphics Interfaces for C++ 更多...

#include "tgi.h"

浏览源代码.

详细描述

Tiny Graphics Interfaces for C++

作者
xgugugu

TGI图形库的C++接口

注意
C++接口的所有类及方法均为宏自动生成,不保证其正确性
注解
C++类基本使用方法(例)
C语言接口:
TGI_Obj* obj = tgi_factory_create_obj(factory); // 创建
tgi_obj_foo(obj, arg1, arg2); // 使用
tgi_obj_free(obj); // 释放
C++接口:
tgi::Obj obj = factory.create_obj(); // 创建
obj.foo(arg1, arg2); // 使用
obj.free(); // 释放