com.vertexvis.model.Vector3 Maven / Gradle / Ivy
/*
* Vertex Platform API
* The Vertex distributed cloud rendering platform includes a set of APIs and SDKs, which together allow easily integrating 3D product data into your business application. See our [Developer Guides](https://developer.vertexvis.com/docs/guides/render-your-first-scene) to get started. Notes about the Postman collection and API Reference code samples, - They include all required and optional body parameters for completeness. Remove any optional parameters as desired. - They use auto-generated IDs and other values that may share the same value for ease of documentation only. In actual requests and responses, the IDs should uniquely identify their corresponding resource.
*
* The version of the OpenAPI document: 1.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.vertexvis.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
/**
* 3D vector.
*/
@ApiModel(description = "3D vector.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Vector3 {
public static final String SERIALIZED_NAME_X = "x";
@SerializedName(SERIALIZED_NAME_X)
private BigDecimal x;
public static final String SERIALIZED_NAME_Y = "y";
@SerializedName(SERIALIZED_NAME_Y)
private BigDecimal y;
public static final String SERIALIZED_NAME_Z = "z";
@SerializedName(SERIALIZED_NAME_Z)
private BigDecimal z;
public Vector3 x(BigDecimal x) {
this.x = x;
return this;
}
/**
* x-axis coordinate.
* @return x
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "1.0", required = true, value = "x-axis coordinate.")
public BigDecimal getX() {
return x;
}
public void setX(BigDecimal x) {
this.x = x;
}
public Vector3 y(BigDecimal y) {
this.y = y;
return this;
}
/**
* y-axis coordinate.
* @return y
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "0.0", required = true, value = "y-axis coordinate.")
public BigDecimal getY() {
return y;
}
public void setY(BigDecimal y) {
this.y = y;
}
public Vector3 z(BigDecimal z) {
this.z = z;
return this;
}
/**
* z-axis coordinate.
* @return z
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "0.0", required = true, value = "z-axis coordinate.")
public BigDecimal getZ() {
return z;
}
public void setZ(BigDecimal z) {
this.z = z;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Vector3 vector3 = (Vector3) o;
return Objects.equals(this.x, vector3.x) &&
Objects.equals(this.y, vector3.y) &&
Objects.equals(this.z, vector3.z);
}
@Override
public int hashCode() {
return Objects.hash(x, y, z);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Vector3 {\n");
sb.append(" x: ").append(toIndentedString(x)).append("\n");
sb.append(" y: ").append(toIndentedString(y)).append("\n");
sb.append(" z: ").append(toIndentedString(z)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}