- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中us.ihmc.yoVariables.variable.YoFramePoint3D.setToNaN()
方法的一些代码示例,展示了YoFramePoint3D.setToNaN()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YoFramePoint3D.setToNaN()
方法的具体详情如下:
包路径:us.ihmc.yoVariables.variable.YoFramePoint3D
类名称:YoFramePoint3D
方法名:setToNaN
暂无
代码示例来源:origin: us.ihmc/ihmc-robotics-toolkit
@Override
public void setPositionToNaN()
{
position.setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-robotics-toolkit
@Override
public void setPositionToNaN()
{
position.setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-robotics-toolkit
@Override
public void setPositionToNaN()
{
position.setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-robotics-toolkit
@Override
public void setPositionToNaN()
{
position.setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public void setToNaN()
{
for (int i = 0; i < ccwOrderedYoFramePoints.length; i++)
ccwOrderedYoFramePoints[i].setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public void setToNaN()
{
pointOne.setToNaN();
pointTwo.setToNaN();
pointThree.setToNaN();
this.update();
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public void setToNaN()
{
start.setToNaN();
end.setToNaN();
vector.setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-yovariables
@Override
public void setToNaN()
{
position.setToNaN();
orientation.setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public void hide()
{
base.setToNaN();
vector.setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public void set(List<? extends Point3DReadOnly> points)
{
if (points.size() > this.ccwOrderedYoFramePoints.length)
throw new RuntimeException("Cannot plot more vertices than the maximum number");
numberOfPoints.set(points.size());
for (int i = 0; i < numberOfPoints.getValue(); i++)
ccwOrderedYoFramePoints[i].set(points.get(i));
for (int i = numberOfPoints.getValue(); i < ccwOrderedYoFramePoints.length; i++)
ccwOrderedYoFramePoints[i].setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public void setPoseToNaN()
{
yoFramePoint.setToNaN();
if (isUsingYawPitchRoll())
yoFrameYawPitchRoll.setToNaN();
else
yoFrameQuaternion.setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public void set(Point3DReadOnly[] points)
{
if (points.length > this.ccwOrderedYoFramePoints.length)
throw new RuntimeException("Cannot plot more vertices than the maximum number");
numberOfPoints.set(points.length);
for (int i = 0; i < numberOfPoints.getValue(); i++)
ccwOrderedYoFramePoints[i].set(points[i]);
for (int i = numberOfPoints.getValue(); i < ccwOrderedYoFramePoints.length; i++)
ccwOrderedYoFramePoints[i].setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public void hide()
{
position.setToNaN();
if (isUsingYawPitchRoll())
yawPitchRoll.setToNaN();
else
quaternion.setToNaN();
}
代码示例来源:origin: us.ihmc/ihmc-humanoid-behaviors
public void clear()
{
currentSolutionQuality.set(Double.POSITIVE_INFINITY);
yoDesiredChestOrientation.setToNaN();
yoDesiredPelvisOrientation.setToNaN();
yoDesiredPelvisPosition.setToNaN();
for (RobotSide robotSide : RobotSide.values)
{
yoDesiredHandPositions.get(robotSide).setToNaN();
yoDesiredHandOrientations.get(robotSide).setToNaN();
}
}
代码示例来源:origin: us.ihmc/ihmc-footstep-planning
private void setupVisualization(String prefix, YoGraphicsListRegistry graphicsListRegistry, YoVariableRegistry registry)
{
YoGraphicsList yoGraphicsList = new YoGraphicsList(prefix + "VisGraph");
for (int i = 0; i < bodyPathPointsForVisualization; i++)
{
YoFramePoint3D point = new YoFramePoint3D(prefix + "BodyPathPoint" + i, ReferenceFrame.getWorldFrame(), registry);
point.setToNaN();
bodyPathPoints.add(point);
YoGraphicPosition pointVisualization = new YoGraphicPosition(prefix + "BodyPathPoint" + i, point, 0.02, YoAppearance.Yellow());
yoGraphicsList.add(pointVisualization);
}
graphicsListRegistry.registerYoGraphicsList(yoGraphicsList);
}
代码示例来源:origin: us.ihmc/ihmc-footstep-planning
private void updateBodyPathVisualization()
{
Pose2D tempPose = new Pose2D();
for (int i = 0; i < bodyPathPointsForVisualization; i++)
{
double percent = (double) i / (double) (bodyPathPointsForVisualization - 1);
bodyPathPlanner.getPointAlongPath(percent, tempPose);
Point3D position = new Point3D();
position.set(tempPose.getPosition());
Point3DReadOnly projectedPoint = PlanarRegionTools.projectPointToPlanesVertically(position, planarRegionsList);
if (projectedPoint != null)
{
bodyPathPoints.get(i).set(projectedPoint);
}
else
{
bodyPathPoints.get(i).setToNaN();
}
}
}
代码示例来源:origin: us.ihmc/ihmc-graphics-description
public YoGraphicPolygon3D(String name, int maxNumberOfPolygonVertices, double height, AppearanceDefinition appearance, YoVariableRegistry registry)
{
super(name);
ccwOrderedYoFramePoints = new YoFramePoint3D[maxNumberOfPolygonVertices];
ccwOrderedPoints = new ArrayList<>(maxNumberOfPolygonVertices);
for (int i = 0; i < maxNumberOfPolygonVertices; i++)
{
ccwOrderedYoFramePoints[i] = new YoFramePoint3D(name + "Point" + i, ReferenceFrame.getWorldFrame(), registry);
ccwOrderedYoFramePoints[i].setToNaN();
ccwOrderedPoints.add(new Point3D());
}
this.height = height;
this.appearance = appearance;
numberOfPoints = new YoInteger(name + "NumberOfPoints", registry);
graphics3dObject = new Graphics3DObject();
graphics3dObject.setChangeable(true);
instruction = new Graphics3DAddMeshDataInstruction(EMPTY_MESH, appearance);
graphics3dObject.addInstruction(instruction);
}
代码示例来源:origin: us.ihmc/ihmc-footstep-planning-test
yoPoint.setToNaN();
YoGraphicPosition yoGraphic = new YoGraphicPosition("ActiveNode " + i, yoPoint, 0.025, YoAppearance.Green());
activeNodeGraphicsQueue.add(yoGraphic);
yoPoint.setToNaN();
YoGraphicPosition yoGraphic = new YoGraphicPosition("InactiveNode " + i, yoPoint, 0.025, YoAppearance.Red());
inactiveNodeGraphicsQueue.add(yoGraphic);
代码示例来源:origin: us.ihmc/ihmc-footstep-planning-test
rayPointsToPack.get(rayIndex).setToNaN();
代码示例来源:origin: us.ihmc/ihmc-path-planning-test
rayPointsToPack.get(rayIndex).setToNaN();
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getValueString()方法的一些代码示例,展示了YoVariable.getValueSt
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.setValueFromLongBits()方法的一些代码示例,展示了YoVariable.setV
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getDescription()方法的一些代码示例,展示了YoVariable.getDescrip
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getFullNameWithNameSpace()方法的一些代码示例,展示了YoVariable.
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getManualScalingMin()方法的一些代码示例,展示了YoVariable.getMa
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getValueAsLongBits()方法的一些代码示例,展示了YoVariable.getVal
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getYoVariableType()方法的一些代码示例,展示了YoVariable.getYoVa
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getManualScalingMax()方法的一些代码示例,展示了YoVariable.getMa
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getYoVariableRegistry()方法的一些代码示例,展示了YoVariable.get
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.isParameter()方法的一些代码示例,展示了YoVariable.isParameter()
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getParameter()方法的一些代码示例,展示了YoVariable.getParameter
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.setValueFromDouble()方法的一些代码示例,展示了YoVariable.setVal
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getValueAsDouble()方法的一些代码示例,展示了YoVariable.getValue
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.getName()方法的一些代码示例,展示了YoVariable.getName()的具体用法。这些
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable.addVariableChangedListener()方法的一些代码示例,展示了YoVariabl
本文整理了Java中us.ihmc.yoVariables.variable.YoVariable类的一些代码示例,展示了YoVariable类的具体用法。这些代码示例主要来源于Github/Stac
本文整理了Java中us.ihmc.yoVariables.variable.YoLong类的一些代码示例,展示了YoLong类的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中us.ihmc.yoVariables.variable.YoFrameVector3D类的一些代码示例,展示了YoFrameVector3D类的具体用法。这些代码示例主要来源于G
本文整理了Java中us.ihmc.yoVariables.variable.YoEnum类的一些代码示例,展示了YoEnum类的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中us.ihmc.yoVariables.variable.YoFramePoint3D类的一些代码示例,展示了YoFramePoint3D类的具体用法。这些代码示例主要来源于Git
我是一名优秀的程序员,十分优秀!