Interface QuaternionOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Quaternion, Quaternion.Builder

    public interface QuaternionOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double getW()
      The scalar component.
      double getX()
      The x component.
      double getY()
      The y component.
      double getZ()
      The z component.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getX

        double getX()
         The x component.
         
        double x = 1;
        Returns:
        The x.
      • getY

        double getY()
         The y component.
         
        double y = 2;
        Returns:
        The y.
      • getZ

        double getZ()
         The z component.
         
        double z = 3;
        Returns:
        The z.
      • getW

        double getW()
         The scalar component.
         
        double w = 4;
        Returns:
        The w.