- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中us.ihmc.yoVariables.variable.YoFramePoint2D.getReferenceFrame()
方法的一些代码示例,展示了YoFramePoint2D.getReferenceFrame()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YoFramePoint2D.getReferenceFrame()
方法的具体详情如下:
包路径:us.ihmc.yoVariables.variable.YoFramePoint2D
类名称:YoFramePoint2D
方法名:getReferenceFrame
暂无
代码示例来源:origin: us.ihmc/ihmc-yovariables
/** {@inheritDoc} */
@Override
public ReferenceFrame getReferenceFrame()
{
return firstEndpoint.getReferenceFrame();
}
代码示例来源:origin: us.ihmc/ihmc-yovariables
/** {@inheritDoc} */
@Override
public ReferenceFrame getReferenceFrame()
{
return point.getReferenceFrame();
}
代码示例来源:origin: us.ihmc/ihmc-yovariables
/**
* Creates a new {@code YoFrameLine2D} using the given {@code YoVariable}s and sets its reference
* frame to {@code referenceFrame}.
*
* @param point the {@code YoFramePoint2D} to use internally for this line point.
* @param direction the {@code YoFrameVector2D} to use internally for this line direction.
* @throws ReferenceFrameMismatchException if {@code point} and {@code direction} are not
* expressed in the same reference frame.
*/
public YoFrameLine2D(YoFramePoint2D point, YoFrameVector2D direction)
{
this(point.getYoX(), point.getYoY(), direction.getYoX(), direction.getYoY(), point.getReferenceFrame());
point.checkReferenceFrameMatch(direction);
}
代码示例来源:origin: us.ihmc/ihmc-yovariables
/**
* Creates a new {@code YoFrameLine2D} using the given {@code YoVariable}s and sets its reference
* frame to {@code referenceFrame}.
*
* @param firstEndpoint the {@code YoFramePoint2D} to use internally for the first endpoint.
* @param secondEndpoint the {@code YoFramePoint2D} to use internally for the second endpoint.
* @throws ReferenceFrameMismatchException if {@code firstEndpoint} and {@code secondEndpoint}
* are not expressed in the same reference frame.
*/
public YoFrameLineSegment2D(YoFramePoint2D firstEndpoint, YoFramePoint2D secondEndpoint)
{
this(firstEndpoint.getYoX(), firstEndpoint.getYoY(), secondEndpoint.getYoX(), secondEndpoint.getYoY(), firstEndpoint.getReferenceFrame());
firstEndpoint.checkReferenceFrameMatch(secondEndpoint);
}
代码示例来源:origin: us.ihmc/ihmc-robotics-toolkit
public static BetaFilteredYoFramePoint2d createBetaFilteredYoFramePoint2d(String namePrefix, String nameSuffix, YoVariableRegistry registry, int beta, YoFramePoint2D unfilteredPoint)
{
// beta is a int
BetaFilteredYoVariable x = new BetaFilteredYoVariable(YoFrameVariableNameTools.createXName(namePrefix, nameSuffix), registry, beta, unfilteredPoint.getYoX());
BetaFilteredYoVariable y = new BetaFilteredYoVariable(YoFrameVariableNameTools.createYName(namePrefix, nameSuffix), registry, beta, unfilteredPoint.getYoY());
BetaFilteredYoFramePoint2d ret = new BetaFilteredYoFramePoint2d(x, y, unfilteredPoint.getReferenceFrame());
return ret;
}
代码示例来源:origin: us.ihmc/ihmc-yovariables
/**
* Creates a copy of {@code this} by finding the duplicated {@code YoVariable}s in the given
* {@link YoVariableRegistry}.
* <p>
* This method does not duplicate {@code YoVariable}s. Assuming the given registry is a duplicate
* of the registry that was used to create {@code this}, this method searches for the duplicated
* {@code YoVariable}s and use them to duplicate {@code this}.
* </p>
*
* @param newRegistry YoVariableRegistry to duplicate {@code this} to.
* @return the duplicate of {@code this}.
*/
public YoFramePoint2D duplicate(YoVariableRegistry newRegistry)
{
YoDouble x = (YoDouble) newRegistry.getVariable(getYoX().getFullNameWithNameSpace());
YoDouble y = (YoDouble) newRegistry.getVariable(getYoY().getFullNameWithNameSpace());
return new YoFramePoint2D(x, y, getReferenceFrame());
}
}
本文整理了Java中us.ihmc.mecano.spatial.Wrench.getReferenceFrame()方法的一些代码示例,展示了Wrench.getReferenceFrame()的具
本文整理了Java中us.ihmc.yoVariables.variable.YoFrameVector3D.getReferenceFrame()方法的一些代码示例,展示了YoFrameVector
本文整理了Java中us.ihmc.yoVariables.variable.YoFramePoint3D.getReferenceFrame()方法的一些代码示例,展示了YoFramePoint3D
本文整理了Java中us.ihmc.yoVariables.variable.YoFrameVector2D.getReferenceFrame()方法的一些代码示例,展示了YoFrameVector
本文整理了Java中us.ihmc.yoVariables.variable.YoFrameQuaternion.getReferenceFrame()方法的一些代码示例,展示了YoFrameQuat
本文整理了Java中us.ihmc.yoVariables.variable.YoFrameYawPitchRoll.getReferenceFrame()方法的一些代码示例,展示了YoFrameYa
本文整理了Java中us.ihmc.yoVariables.variable.YoFramePoint2D.getReferenceFrame()方法的一些代码示例,展示了YoFramePoint2D
本文整理了Java中us.ihmc.robotics.math.frames.YoFrameOrientation.getReferenceFrame()方法的一些代码示例,展示了YoFrameOri
本文整理了Java中us.ihmc.robotics.math.frames.YoFramePoint.getReferenceFrame()方法的一些代码示例,展示了YoFramePoint.get
本文整理了Java中us.ihmc.robotics.math.frames.YoFrameVector.getReferenceFrame()方法的一些代码示例,展示了YoFrameVector.g
本文整理了Java中us.ihmc.robotics.math.frames.YoFrameVector2d.getReferenceFrame()方法的一些代码示例,展示了YoFrameVector
本文整理了Java中us.ihmc.robotics.math.frames.YoMultipleFramesHolder.getReferenceFrame()方法的一些代码示例,展示了YoMult
本文整理了Java中us.ihmc.robotics.math.trajectories.YoParabolicTrajectoryGenerator.getReferenceFrame()方法的一些
本文整理了Java中us.ihmc.robotics.math.trajectories.waypoints.YoFrameSO3TrajectoryPoint.getReferenceFrame()
本文整理了Java中us.ihmc.robotics.math.trajectories.waypoints.YoFrameSE3TrajectoryPoint.getReferenceFrame()
我是一名优秀的程序员,十分优秀!