All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.ihmc.scs2.simulation.shapes.interfaces.FrameSTPRamp3DBasics Maven / Gradle / Ivy

There is a newer version: 17-0.28.3
Show newest version
package us.ihmc.scs2.simulation.shapes.interfaces;

import us.ihmc.euclid.referenceFrame.ReferenceFrame;
import us.ihmc.euclid.referenceFrame.interfaces.FrameRamp3DBasics;

/**
 * Write and read interface for a ramp that implements the sphere-torus-patches (STP) method to make
 * shapes strictly convex and that is expressed in a modifiable reference frame.
 * 
 * @see STPShape3DReadOnly
 * @author Sylvain Bertrand
 */
public interface FrameSTPRamp3DBasics extends FixedFrameSTPRamp3DBasics, FrameRamp3DBasics
{
   default void setIncludingFrame(ReferenceFrame referenceFrame, STPRamp3DReadOnly other)
   {
      setReferenceFrame(referenceFrame);
      set(other);
   }

   default void setIncludingFrame(FrameSTPRamp3DReadOnly other)
   {
      setIncludingFrame(other.getReferenceFrame(), other);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy