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

com.scene7.ipsapi.PerspectiveQuad Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


package com.scene7.ipsapi;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for PerspectiveQuad complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PerspectiveQuad">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="x0" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="y0" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="x1" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="y1" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="x2" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="y2" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="x3" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="y3" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PerspectiveQuad", propOrder = { "x0", "y0", "x1", "y1", "x2", "y2", "x3", "y3" }) public class PerspectiveQuad { protected double x0; protected double y0; protected double x1; protected double y1; protected double x2; protected double y2; protected double x3; protected double y3; /** * Gets the value of the x0 property. * */ public double getX0() { return x0; } /** * Sets the value of the x0 property. * */ public void setX0(double value) { this.x0 = value; } /** * Gets the value of the y0 property. * */ public double getY0() { return y0; } /** * Sets the value of the y0 property. * */ public void setY0(double value) { this.y0 = value; } /** * Gets the value of the x1 property. * */ public double getX1() { return x1; } /** * Sets the value of the x1 property. * */ public void setX1(double value) { this.x1 = value; } /** * Gets the value of the y1 property. * */ public double getY1() { return y1; } /** * Sets the value of the y1 property. * */ public void setY1(double value) { this.y1 = value; } /** * Gets the value of the x2 property. * */ public double getX2() { return x2; } /** * Sets the value of the x2 property. * */ public void setX2(double value) { this.x2 = value; } /** * Gets the value of the y2 property. * */ public double getY2() { return y2; } /** * Sets the value of the y2 property. * */ public void setY2(double value) { this.y2 = value; } /** * Gets the value of the x3 property. * */ public double getX3() { return x3; } /** * Sets the value of the x3 property. * */ public void setX3(double value) { this.x3 = value; } /** * Gets the value of the y3 property. * */ public double getY3() { return y3; } /** * Sets the value of the y3 property. * */ public void setY3(double value) { this.y3 = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy