本文整理汇总了C++中SystemPath::IsSameSector方法的典型用法代码示例。如果您正苦于以下问题:C++ SystemPath::IsSameSector方法的具体用法?C++ SystemPath::IsSameSector怎么用?C++ SystemPath::IsSameSector使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SystemPath
的用法示例。
在下文中一共展示了SystemPath::IsSameSector方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: l_sbodypath_is_same_sector
/*
* Method: IsSameSector
*
* Determine if two <SystemPath> objects point to objects in the same sector.
*
* > is_same = path:IsSameSector(otherpath)
*
* Parameters:
*
* otherpath - the <SystemPath> to compare with this path
*
* Return:
*
* is_same - true if the path's point to the same sector, false otherwise
*
* Availability:
*
* alpha 17
*
* Status:
*
* stable
*/
static int l_sbodypath_is_same_sector(lua_State *l)
{
SystemPath *a = LuaObject<SystemPath>::CheckFromLua(1);
SystemPath *b = LuaObject<SystemPath>::CheckFromLua(2);
lua_pushboolean(l, a->IsSameSector(b));
return 1;
}