- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中us.ihmc.graphicsDescription.appearance.YoAppearance.DarkGreen()
方法的一些代码示例,展示了YoAppearance.DarkGreen()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YoAppearance.DarkGreen()
方法的具体详情如下:
包路径:us.ihmc.graphicsDescription.appearance.YoAppearance
类名称:YoAppearance
方法名:DarkGreen
暂无
代码示例来源:origin: us.ihmc/IHMCAvatarInterfaces
private ArrayList<Graphics3DObject> createGroundLinkGraphicsFromGroundProfile(GroundProfile3D groundProfile)
{
ArrayList<Graphics3DObject> ret = new ArrayList<Graphics3DObject>();
Graphics3DObject texturedGroundLinkGraphics = new Graphics3DObject();
HeightMap heightMap = null;
if (groundProfile != null) heightMap = groundProfile.getHeightMapIfAvailable();
else if (groundProfile3D != null) heightMap = groundProfile3D.getHeightMapIfAvailable();
texturedGroundLinkGraphics.addHeightMap(heightMap, 300, 300, YoAppearance.DarkGreen());
ret.add(texturedGroundLinkGraphics);
return ret;
}
代码示例来源:origin: us.ihmc/ihmc-avatar-interfaces
private Graphics3DObject createGroundLinkGraphicsFromGroundProfile(GroundProfile3D groundProfile)
{
Graphics3DObject texturedGroundLinkGraphics = new Graphics3DObject();
HeightMap heightMap = null;
if (groundProfile != null)
heightMap = groundProfile.getHeightMapIfAvailable();
texturedGroundLinkGraphics.addHeightMap(heightMap, 300, 300, YoAppearance.DarkGreen());
return texturedGroundLinkGraphics;
}
代码示例来源:origin: us.ihmc/simulation-construction-set-tools
public Graphics3DObject createLinkGraphics(AppearanceDefinition yoAppearance)
{
Graphics3DObject ret = new Graphics3DObject();
double polygonExtrusionHeight = height-baseZ;
ret.translate(new Vector3D(0.0, 0.0, baseZ));
ret.addExtrudedPolygon(convexPolygon2d, polygonExtrusionHeight, yoAppearance);
if (this.shrunkenPolygon != null)
{
// ret.translate(new Vector3d(0.0, 0.0, baseZ));
ret.addExtrudedPolygon(shrunkenPolygon, polygonExtrusionHeight + 0.001, YoAppearance.DarkGreen());
}
return ret;
}
代码示例来源:origin: us.ihmc/simulation-construction-set-test
private Link exampleConeShape()
{
Link ret = new Link("exampleArcTorusShape");
Graphics3DObject linkGraphics = new Graphics3DObject();
// Cone
linkGraphics.translate(OFFSET, 0.0, 0.0);
linkGraphics.addCoordinateSystem(COORD_LENGTH);
linkGraphics.addCone(CONE_H, CONE_R, YoAppearance.DarkGreen());
ret.setLinkGraphics(linkGraphics);
return ret;
}
代码示例来源:origin: us.ihmc/ihmc-avatar-interfaces
double zOffsetLowerArm = getChildJoint().getJointOffset().getZ() / 2.0;
lowerArmGraphics.translate(0.0, 0.0, zOffsetLowerArm);
lowerArmGraphics.addEllipsoid(0.05, 0.05, Math.abs(zOffsetLowerArm), YoAppearance.DarkGreen());
return lowerArmGraphics;
case WRIST:
代码示例来源:origin: us.ihmc/simulation-construction-set-test
linkGraphics.addCone(CONE_H, CONE_R, YoAppearance.DarkGreen());
代码示例来源:origin: us.ihmc/IHMCFootstepPlanning
rightFootstepToExpandViz = new YoGraphicPolygon("rightFootstepToExpandViz", rightFootstepUnderConsideration, "rightFootstepToExpandPose", "", registry, 1.0, YoAppearance.Yellow());
leftAcceptedFootstepViz = new YoGraphicPolygon("leftAcceptedFootstepViz", leftAcceptedFootstep, "leftAcceptedFootstepPose", "", registry, 1.0, YoAppearance.Green());
rightAcceptedFootstepViz = new YoGraphicPolygon("rightAcceptedFootstepViz", rightAcceptedFootstep, "rightAcceptedFootstepPose", "", registry, 1.0, YoAppearance.DarkGreen());
leftRejectedFootstepViz = new YoGraphicPolygon("leftRejectedFootstepViz", leftRejectedFootstep, "leftRejectedFootstepPose", "", registry, 1.0, YoAppearance.Red());
rightRejectedFootstepViz = new YoGraphicPolygon("rightRejectedFootstepViz", rightRejectedFootstep, "rightRejectedFootstepPose", "", registry, 1.0, YoAppearance.DarkRed());
代码示例来源:origin: us.ihmc/ihmc-avatar-interfaces
coneGraphic.translate(0.0, 0.0, coneHeight);
coneGraphic.rotate(Math.PI, Axis.Y);
coneGraphic.addCone(coneHeight, coneBaseRadius, YoAppearance.DarkGreen());
scs.addStaticLinkGraphics(coneGraphic);
代码示例来源:origin: us.ihmc/ihmc-footstep-planning-test
stanceFramePose.setPosition(0.2, 0.26, 0.31);
stanceFramePose.setOrientationYawPitchRoll(0.0, stanceFootPitch.getDoubleValue(), 0.0);
YoGraphicPolygon stanceFootPolygon = createStaticFootstep("stance", stanceFramePose, YoAppearance.DarkGreen(), registry, yoGraphicsListRegistry);
代码示例来源:origin: us.ihmc/ihmc-footstep-planning-test
heightMapGraphics.addHeightMap(heightMap, 300, 300, YoAppearance.DarkGreen());
scs.addStaticLinkGraphics(heightMapGraphics);
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicsList类的一些代码示例,展示了YoGraphicsList类的具体用法。这些代码
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicPosition类的一些代码示例,展示了YoGraphicPosition类的具体用
本文整理了Java中us.ihmc.graphicsDescription.appearance.YoAppearance类的一些代码示例,展示了YoAppearance类的具体用法。这些代码示例主要
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicsListRegistry类的一些代码示例,展示了YoGraphicsListReg
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicVector类的一些代码示例,展示了YoGraphicVector类的具体用法。这些
本文整理了Java中us.ihmc.graphicsDescription.appearance.YoAppearanceTexture类的一些代码示例,展示了YoAppearanceTexture类
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicPolygon类的一些代码示例,展示了YoGraphicPolygon类的具体用法。
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicReferenceFrame类的一些代码示例,展示了YoGraphicReferen
本文整理了Java中us.ihmc.graphicsDescription.appearance.YoAppearanceRGBColor类的一些代码示例,展示了YoAppearanceRGBColo
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicCoordinateSystem类的一些代码示例,展示了YoGraphicCoord
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicLineSegment类的一些代码示例,展示了YoGraphicLineSegmen
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphic类的一些代码示例,展示了YoGraphic类的具体用法。这些代码示例主要来源于Git
本文整理了Java中us.ihmc.graphicsDescription.appearance.YoAppearanceMaterial类的一些代码示例,展示了YoAppearanceMateria
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicShape类的一些代码示例,展示了YoGraphicShape类的具体用法。这些代码
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicText类的一些代码示例,展示了YoGraphicText类的具体用法。这些代码示例
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicCylinder类的一些代码示例,展示了YoGraphicCylinder类的具体用
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicVRML类的一些代码示例,展示了YoGraphicVRML类的具体用法。这些代码示例
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.YoGraphicAbstractShape类的一些代码示例,展示了YoGraphicAbstract
本文整理了Java中us.ihmc.graphicsDescription.appearance.YoAppearanceTransparent类的一些代码示例,展示了YoAppearanceTran
本文整理了Java中us.ihmc.graphicsDescription.yoGraphics.plotting.YoArtifactPosition类的一些代码示例,展示了YoArtifactPo
我是一名优秀的程序员,十分优秀!