OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2010, Google Inc. |
| 3 * All rights reserved. |
| 4 * |
| 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are |
| 7 * met: |
| 8 * |
| 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. |
| 11 * * Redistributions in binary form must reproduce the above |
| 12 * copyright notice, this list of conditions and the following disclaimer |
| 13 * in the documentation and/or other materials provided with the |
| 14 * distribution. |
| 15 * * Neither the name of Google Inc. nor the names of its |
| 16 * contributors may be used to endorse or promote products derived from |
| 17 * this software without specific prior written permission. |
| 18 * |
| 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ |
| 31 |
| 32 namespace o3d { |
| 33 |
| 34 %[ |
| 35 A ProcessedPath holds a series of 2D vector drawing commands (i.e., |
| 36 move-to, line-to, quad-to, cubic-to) and the results of processing |
| 37 this series of commands into a triangle mesh for rendering on the |
| 38 GPU. It is only an internal class; this functionality is exposed via |
| 39 the o3djs.gpu2d library. |
| 40 %] |
| 41 |
| 42 [nocpp, include="core/cross/processed_path.h"] class ProcessedPath |
| 43 : ObjectBase { |
| 44 %[ |
| 45 Clears out all of the curve segments that have been added to this |
| 46 path. |
| 47 %] |
| 48 [nodocs] |
| 49 void Clear(); |
| 50 |
| 51 %[ |
| 52 Moves the pen to the given absolute X,Y coordinates. If a contour |
| 53 isn't currently open on this path, one is opened. |
| 54 \param x the x coordinate to move to |
| 55 \param y the y coordinate to move to |
| 56 %] |
| 57 [nodocs] |
| 58 void MoveTo(float x, float y); |
| 59 |
| 60 %[ |
| 61 Draws a line from the current coordinates to the given absolute |
| 62 X,Y coordinates. |
| 63 \param x the x coordinate to draw a line to |
| 64 \param y the y coordinate to draw a line to |
| 65 %] |
| 66 [nodocs] |
| 67 void LineTo(float x, float y); |
| 68 |
| 69 %[ |
| 70 Draws a quadratic curve from the current coordinates through the |
| 71 given control point and end point, specified in absolute |
| 72 coordinates. |
| 73 \param cx the x coordinate of the quadratic's control point |
| 74 \param cy the y coordinate of the quadratic's control point |
| 75 \param x the x coordinate of the quadratic's end point |
| 76 \param y the y coordinate of the quadratic's end point |
| 77 %] |
| 78 [nodocs] |
| 79 void QuadraticTo(float cx, float cy, float x, float y); |
| 80 |
| 81 %[ |
| 82 Draws a cubic curve from the current coordinates through the |
| 83 given control points and end point, specified in absolute |
| 84 coordinates. |
| 85 \param c0x the x coordinate of the cubic's first control point |
| 86 \param c0y the y coordinate of the cubic's first control point |
| 87 \param c1x the x coordinate of the cubic's second control point |
| 88 \param c1y the y coordinate of the cubic's second control point |
| 89 \param x the x coordinate of the cubic's end point |
| 90 \param y the y coordinate of the cubic's end point |
| 91 %] |
| 92 [nodocs] |
| 93 void CubicTo(float c0x, float c0y, |
| 94 float c1x, float c1y, |
| 95 float x, float y); |
| 96 |
| 97 %[ |
| 98 Closes the currently open contour on this path. |
| 99 %] |
| 100 [nodocs] |
| 101 void Close(); |
| 102 |
| 103 %[ |
| 104 Creates the triangle mesh which will render the given curve |
| 105 segments. There are two regions: exterior and interior. The |
| 106 exterior region covers the portions containing the curve |
| 107 segments. It has two associated fields: a 2D floating point field |
| 108 for the positions, and a 3D floating point field for the |
| 109 Loop/Blinn texture coordinates. The interior region has one 2D |
| 110 floating point field for the positions. The contents of the fields |
| 111 are organized for rendering as non-indexed triangles. |
| 112 %] |
| 113 [nodocs] |
| 114 void CreateMesh(Field exterior_positions, |
| 115 Field exterior_texture_coordinates, |
| 116 Field interior_positions); |
| 117 }; |
| 118 |
| 119 } // namespace o3d |
OLD | NEW |