本文整理了Java中us.ihmc.simulationconstructionset.SimulationConstructionSet.cropBuffer()
方法的一些代码示例,展示了SimulationConstructionSet.cropBuffer()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SimulationConstructionSet.cropBuffer()
方法的具体详情如下:
包路径:us.ihmc.simulationconstructionset.SimulationConstructionSet
类名称:SimulationConstructionSet
方法名:cropBuffer
暂无
代码示例来源:origin: us.ihmc/ihmc-footstep-planning-test
public void cropBuffer()
{
scs.cropBuffer();
}
代码示例来源:origin: us.ihmc/simulation-construction-set-tools
public void cropFirstPoint()
{
scs.cropBuffer();
scs.gotoInPointNow();
scs.stepForwardNow(1);
scs.setInPoint();
scs.cropBuffer();
}
代码示例来源:origin: us.ihmc/simulation-construction-set-tools
public void cropFirstPoint()
{
scs.cropBuffer();
scs.gotoInPointNow();
scs.stepForwardNow(1);
scs.setInPoint();
scs.cropBuffer();
}
代码示例来源:origin: us.ihmc/simulation-construction-set-tools
public void cropInitialSimPoints(int numberOfDataPointsToCrop)
{
scs.cropBuffer();
scs.gotoInPointNow();
scs.stepForwardNow(numberOfDataPointsToCrop);
scs.setInPoint();
scs.cropBuffer();
}
代码示例来源:origin: us.ihmc/DarpaRoboticsChallenge
private static void deleteFirstDataPointAndCropData(SimulationConstructionSet scs)
{
scs.gotoInPointNow();
scs.tick(1);
scs.setInPoint();
scs.cropBuffer();
}
代码示例来源:origin: us.ihmc/ihmc-simulation-toolkit
private static void deleteFirstDataPointAndCropData(SimulationConstructionSet scs)
{
scs.gotoInPointNow();
scs.tick(1);
scs.setInPoint();
scs.cropBuffer();
scs.gotoOutPointNow();
}
代码示例来源:origin: us.ihmc/IHMCSimulationToolkit
private static void deleteFirstDataPointAndCropData(SimulationConstructionSet scs)
{
scs.gotoInPointNow();
scs.tick(1);
scs.setInPoint();
scs.cropBuffer();
scs.gotoOutPointNow();
}
代码示例来源:origin: us.ihmc/ihmc-avatar-interfaces-test
private void cropSCSBuffer(SimulationConstructionSet scs, SimulationTestingParameters simulationTestingParameters)
{
if (scs != null)
{
scs.gotoInPointNow();
scs.tick(2);
ThreadTools.sleep(100L);
scs.setInPoint();
ThreadTools.sleep(100L);
scs.cropBuffer();
if (simulationTestingParameters.getKeepSCSUp())
{
ThreadTools.sleepForever();
}
}
}
代码示例来源:origin: us.ihmc/ihmc-avatar-interfaces-test
scs.cropBuffer();
double[] desiredICPXData = scs.getDataBuffer().getEntry(desiredICPX).getData();
double[] desiredICPYData = scs.getDataBuffer().getEntry(desiredICPY).getData();
代码示例来源:origin: us.ihmc/ihmc-avatar-interfaces
@Override
public void actionPerformed(ActionEvent e)
simulationConstructionSet.cropBuffer();
代码示例来源:origin: us.ihmc/IHMCAvatarInterfaces
@Override
public void actionPerformed(ActionEvent e)
simulationConstructionSet.cropBuffer();
代码示例来源:origin: us.ihmc/DarpaRoboticsChallenge
@Override
public void actionPerformed(ActionEvent e)
simulationConstructionSet.cropBuffer();
代码示例来源:origin: us.ihmc/ihmc-avatar-interfaces-test
scs.cropBuffer();
ThreadTools.sleepForever();
代码示例来源:origin: us.ihmc/ihmc-common-walking-control-modules-test
scs.cropBuffer();
ThreadTools.sleepForever();
代码示例来源:origin: us.ihmc/ihmc-avatar-interfaces
scs.cropBuffer();
scs.play();
scs.startOnAThread();
代码示例来源:origin: us.ihmc/simulation-construction-set-test
scs.setIndex(1);
scs.setInPoint();
scs.cropBuffer();
代码示例来源:origin: us.ihmc/simulation-construction-set-test
scs.setIndex(1);
scs.setInPoint();
scs.cropBuffer();
代码示例来源:origin: us.ihmc/simulation-construction-set-test
scs.setIndex(1);
scs.setInPoint();
scs.cropBuffer();
代码示例来源:origin: us.ihmc/simulation-construction-set-test
scs.setIndex(1);
scs.setInPoint();
scs.cropBuffer();
代码示例来源:origin: us.ihmc/simulation-construction-set-tools-test
scs.cropBuffer();
ThreadTools.sleepForever();
内容来源于网络,如有侵权,请联系作者删除!