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

shape_msgs.msg.dds.Mesh Maven / Gradle / Ivy

package shape_msgs.msg.dds;

import us.ihmc.communication.packets.Packet;
import us.ihmc.euclid.interfaces.Settable;
import us.ihmc.euclid.interfaces.EpsilonComparable;
import java.util.function.Supplier;
import us.ihmc.pubsub.TopicDataType;

/**
       * Definition of a mesh.
       */
public class Mesh extends Packet implements Settable, EpsilonComparable
{
   /**
            * List of triangles; the index values refer to positions in vertices[].
            */
   public us.ihmc.idl.IDLSequence.Object  triangles_;
   /**
            * The actual vertices that make up the mesh.
            */
   public us.ihmc.idl.IDLSequence.Object  vertices_;

   public Mesh()
   {
      triangles_ = new us.ihmc.idl.IDLSequence.Object (100, new shape_msgs.msg.dds.MeshTrianglePubSubType());
      vertices_ = new us.ihmc.idl.IDLSequence.Object (100, new geometry_msgs.msg.dds.PointPubSubType());

   }

   public Mesh(Mesh other)
   {
      this();
      set(other);
   }

   public void set(Mesh other)
   {
      triangles_.set(other.triangles_);
      vertices_.set(other.vertices_);
   }


   /**
            * List of triangles; the index values refer to positions in vertices[].
            */
   public us.ihmc.idl.IDLSequence.Object  getTriangles()
   {
      return triangles_;
   }


   /**
            * The actual vertices that make up the mesh.
            */
   public us.ihmc.idl.IDLSequence.Object  getVertices()
   {
      return vertices_;
   }


   public static Supplier getPubSubType()
   {
      return MeshPubSubType::new;
   }

   @Override
   public Supplier getPubSubTypePacket()
   {
      return MeshPubSubType::new;
   }

   @Override
   public boolean epsilonEquals(Mesh other, double epsilon)
   {
      if(other == null) return false;
      if(other == this) return true;

      if (this.triangles_.size() != other.triangles_.size()) { return false; }
      else
      {
         for (int i = 0; i < this.triangles_.size(); i++)
         {  if (!this.triangles_.get(i).epsilonEquals(other.triangles_.get(i), epsilon)) return false; }
      }

      if (this.vertices_.size() != other.vertices_.size()) { return false; }
      else
      {
         for (int i = 0; i < this.vertices_.size(); i++)
         {  if (!this.vertices_.get(i).epsilonEquals(other.vertices_.get(i), epsilon)) return false; }
      }


      return true;
   }

   @Override
   public boolean equals(Object other)
   {
      if(other == null) return false;
      if(other == this) return true;
      if(!(other instanceof Mesh)) return false;

      Mesh otherMyClass = (Mesh) other;

      if (!this.triangles_.equals(otherMyClass.triangles_)) return false;
      if (!this.vertices_.equals(otherMyClass.vertices_)) return false;

      return true;
   }

   @Override
   public java.lang.String toString()
   {
      StringBuilder builder = new StringBuilder();

      builder.append("Mesh {");
      builder.append("triangles=");
      builder.append(this.triangles_);      builder.append(", ");
      builder.append("vertices=");
      builder.append(this.vertices_);
      builder.append("}");
      return builder.toString();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy