line2d.double.html
来自「API資料大全」· HTML 代码 · 共 538 行 · 第 1/2 页
HTML
538 行
<P><!-- ============ FIELD DETAIL =========== --><A NAME="field_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Field Detail</B></FONT></TD></TR></TABLE><A NAME="x1"><!-- --></A><H3>x1</H3><PRE>public double <B>x1</B></PRE><DL><DD>The X coordinate of the start point of the line segment.</DL><HR><A NAME="y1"><!-- --></A><H3>y1</H3><PRE>public double <B>y1</B></PRE><DL><DD>The Y coordinate of the start point of the line segment.</DL><HR><A NAME="x2"><!-- --></A><H3>x2</H3><PRE>public double <B>x2</B></PRE><DL><DD>The X coordinate of the end point of the line segment.</DL><HR><A NAME="y2"><!-- --></A><H3>y2</H3><PRE>public double <B>y2</B></PRE><DL><DD>The Y coordinate of the end point of the line segment.</DL><!-- ========= CONSTRUCTOR DETAIL ======== --><A NAME="constructor_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Constructor Detail</B></FONT></TD></TR></TABLE><A NAME="Line2D.Double()"><!-- --></A><H3>Line2D.Double</H3><PRE>public <B>Line2D.Double</B>()</PRE><DL><DD>Constructs and initializes a Line with coordinates (0, 0) -> (0, 0).</DL><HR><A NAME="Line2D.Double(double, double, double, double)"><!-- --></A><H3>Line2D.Double</H3><PRE>public <B>Line2D.Double</B>(double X1, double Y1, double X2, double Y2)</PRE><DL><DD>Constructs and initializes a <code>Line2D</code> from the specified coordinates.<DD><DL><DT><B>Parameters:</B><DD><CODE>X1, Y1</CODE> - the first specified coordinate<DD><CODE>X2, Y2</CODE> - the second specified coordinate</DL></DD></DL><HR><A NAME="Line2D.Double(java.awt.geom.Point2D, java.awt.geom.Point2D)"><!-- --></A><H3>Line2D.Double</H3><PRE>public <B>Line2D.Double</B>(<A HREF="../../../java/awt/geom/Point2D.html">Point2D</A> p1, <A HREF="../../../java/awt/geom/Point2D.html">Point2D</A> p2)</PRE><DL><DD>Constructs and initializes a <code>Line2D</code> from the specified <code>Point2D</code> objects.<DD><DL><DT><B>Parameters:</B><DD><CODE>p1, p2</CODE> - the specified <code>Point2D</code> objects</DL></DD></DL><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Method Detail</B></FONT></TD></TR></TABLE><A NAME="getX1()"><!-- --></A><H3>getX1</H3><PRE>public double <B>getX1</B>()</PRE><DL><DD>Returns the X coordinate of the start point in double precision.<DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../java/awt/geom/Line2D.html#getX1()">getX1</A></CODE> in class <CODE><A HREF="../../../java/awt/geom/Line2D.html">Line2D</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>the X coordinate of this <code>Line2D</code> object's starting point.</DL></DD></DL><HR><A NAME="getY1()"><!-- --></A><H3>getY1</H3><PRE>public double <B>getY1</B>()</PRE><DL><DD>Returns the Y coordinate of the start point in double precision.<DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../java/awt/geom/Line2D.html#getY1()">getY1</A></CODE> in class <CODE><A HREF="../../../java/awt/geom/Line2D.html">Line2D</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>the X coordinate of this <code>Line2D</code> object's starting point.</DL></DD></DL><HR><A NAME="getP1()"><!-- --></A><H3>getP1</H3><PRE>public <A HREF="../../../java/awt/geom/Point2D.html">Point2D</A> <B>getP1</B>()</PRE><DL><DD>Returns the starting <code>Point2D</code> of this <code>Line2D</code>.<DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../java/awt/geom/Line2D.html#getP1()">getP1</A></CODE> in class <CODE><A HREF="../../../java/awt/geom/Line2D.html">Line2D</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>the starting <code>Point2D</code> of this <code>Line2D</code></DL></DD></DL><HR><A NAME="getX2()"><!-- --></A><H3>getX2</H3><PRE>public double <B>getX2</B>()</PRE><DL><DD>Returns the X coordinate of the end point in double precision.<DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../java/awt/geom/Line2D.html#getX2()">getX2</A></CODE> in class <CODE><A HREF="../../../java/awt/geom/Line2D.html">Line2D</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>the X coordinate of this <code>Line2D</code> object's ending point.</DL></DD></DL><HR><A NAME="getY2()"><!-- --></A><H3>getY2</H3><PRE>public double <B>getY2</B>()</PRE><DL><DD>Returns the Y coordinate of the end point in double precision.<DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../java/awt/geom/Line2D.html#getY2()">getY2</A></CODE> in class <CODE><A HREF="../../../java/awt/geom/Line2D.html">Line2D</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>the Y coordinate of this <code>Line2D</code> object's starting point.</DL></DD></DL><HR><A NAME="getP2()"><!-- --></A><H3>getP2</H3><PRE>public <A HREF="../../../java/awt/geom/Point2D.html">Point2D</A> <B>getP2</B>()</PRE><DL><DD>Returns the end <code>Point2D</code> of this <code>Line2D</code>.<DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../java/awt/geom/Line2D.html#getP2()">getP2</A></CODE> in class <CODE><A HREF="../../../java/awt/geom/Line2D.html">Line2D</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>the ending <code>Point2D</code> of this <code>Line2D</code>.</DL></DD></DL><HR><A NAME="setLine(double, double, double, double)"><!-- --></A><H3>setLine</H3><PRE>public void <B>setLine</B>(double X1, double Y1, double X2, double Y2)</PRE><DL><DD>Sets the location of the endpoints of this <code>Line2D</code> to the specified double coordinates.<DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../java/awt/geom/Line2D.html#setLine(double, double, double, double)">setLine</A></CODE> in class <CODE><A HREF="../../../java/awt/geom/Line2D.html">Line2D</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>X1, Y1</CODE> - the first specified coordinate<DD><CODE>X2, Y2</CODE> - the second specified coordinate</DL></DD></DL><HR><A NAME="getBounds2D()"><!-- --></A><H3>getBounds2D</H3><PRE>public <A HREF="../../../java/awt/geom/Rectangle2D.html">Rectangle2D</A> <B>getBounds2D</B>()</PRE><DL><DD>Returns the high-precision bounding box of this <code>Line2D</code>.<DD><DL><DT><B>Returns:</B><DD>a <code>Rectangle2D</code> that is the high-precision bounding box of this <code>Line2D</code>.</DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ========== START OF NAVBAR ========== --><A NAME="navbar_bottom"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3"> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Line2D.Double.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><b>Java<sup><font size=-2>TM</font></sup> 2 Platform<br>Std. Ed. v1.3</b></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../java/awt/geom/Line2D.html"><B>PREV CLASS</B></A> <A HREF="../../../java/awt/geom/Line2D.Float.html"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html" TARGET="_top"><B>FRAMES</B></A> <A HREF="Line2D.Double.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: <A HREF="#inner_classes_inherited_from_class_java.awt.geom.Line2D">INNER</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><!-- =========== END OF NAVBAR =========== --><HR><font size="-1"><a href="http://java.sun.com/cgi-bin/bugreport.cgi">Submit a bug or feature</a><br>For further API reference and developer documentation, see <a href="http://java.sun.com/products/jdk/1.3/devdocs-vs-specs.html">Java 2 SDK SE Developer Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. <p>Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.<br>Copyright 1993-2000 Sun Microsystems, Inc. 901 San Antonio Road<br>Palo Alto, California, 94303, U.S.A. All Rights Reserved.</font></BODY></HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?