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

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

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.06.06 at 01:39:50 PM UTC 
//


package com.scene7.ipsapi;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
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", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = { "x0", "y0", "x1", "y1", "x2", "y2", "x3", "y3" }) public class PerspectiveQuad { @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected double x0; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected double y0; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected double x1; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected double y1; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected double x2; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected double y2; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected double x3; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") 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