us.ihmc.euclid.referenceFrame.ReferenceFrame.clearChildren()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(50)

本文整理了Java中us.ihmc.euclid.referenceFrame.ReferenceFrame.clearChildren方法的一些代码示例,展示了ReferenceFrame.clearChildren的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ReferenceFrame.clearChildren方法的具体详情如下:
包路径:us.ihmc.euclid.referenceFrame.ReferenceFrame
类名称:ReferenceFrame
方法名:clearChildren

ReferenceFrame.clearChildren介绍

[英]Removes and disables all the children of this.
[中]删除并禁用此项的所有子项。

代码示例

代码示例来源:origin: us.ihmc/euclid-frame

/**
* Will clear the entire frame tree of the {@link ReferenceFrameTools#worldFrame} tree.
* 
* @deprecated Reference frames are automatically disposed of by the GC when no external reference
*             exists.
* @since 0.9.4
*/
public static void clearWorldFrameTree()
{
 worldFrame.clearChildren();
}

代码示例来源:origin: us.ihmc/euclid-frame

/**
* Will clear the entire frame tree that this frame is part of leaving only the root frame enabled.
* All other frames in the tree will be removed and disabled.
* 
* @param frame in the frame tree that will be cleared.
* @deprecated Reference frames are automatically disposed of by the GC when no external reference
*             exists.
* @since 0.9.4
*/
public static void clearFrameTree(ReferenceFrame frame)
{
 frame.getRootFrame().clearChildren();
}

代码示例来源:origin: us.ihmc/ihmc-robotics-toolkit-test

ReferenceFrame.getWorldFrame().clearChildren();

相关文章