JOGL v2.6.0-rc-20250706
JOGL, High-Performance Graphics Binding for Java™ (public API).
GLUtessellator.java
Go to the documentation of this file.
1/*
2* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
3* All rights reserved.
4*/
5
6/*
7** License Applicability. Except to the extent portions of this file are
8** made subject to an alternative license as permitted in the SGI Free
9** Software License B, Version 2.0 (the "License"), the contents of this
10** file are subject only to the provisions of the License. You may not use
11** this file except in compliance with the License. You may obtain a copy
12** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
13** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
14**
15** http://oss.sgi.com/projects/FreeB
16**
17** Note that, as provided in the License, the Software is distributed on an
18** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
19** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
20** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
21** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
22**
23** NOTE: The Original Code (as defined below) has been licensed to Sun
24** Microsystems, Inc. ("Sun") under the SGI Free Software License B
25** (Version 1.1), shown above ("SGI License"). Pursuant to Section
26** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
27** you under an alternative license ("Alternative License"). This
28** Alternative License includes all of the provisions of the SGI License
29** except that Section 2.2 and 11 are omitted. Any differences between
30** the Alternative License and the SGI License are offered solely by Sun
31** and not by SGI.
32**
33** Original Code. The Original Code is: OpenGL Sample Implementation,
34** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
35** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
36** Copyright in any portions created by third parties is as indicated
37** elsewhere herein. All Rights Reserved.
38**
39** Additional Notice Provisions: The application programming interfaces
40** established by SGI in conjunction with the Original Code are The
41** OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
42** April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
43** 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
44** Window System(R) (Version 1.3), released October 19, 1998. This software
45** was created using the OpenGL(R) version 1.2.1 Sample Implementation
46** published by SGI, but has not been independently verified as being
47** compliant with the OpenGL(R) version 1.2.1 Specification.
48**
49** Author: Eric Veach, July 1994
50** Java Port: Pepijn Van Eeckhoudt, July 2003
51** Java Port: Nathan Parker Burg, August 2003
52*/
53package com.jogamp.opengl.glu;
54
55/**
56 * The <b>GLUtessellator</b> object is used to hold the data, such as the
57 * vertices, edges and callback objects, to describe and tessellate complex
58 * polygons. A <b>GLUtessellator</b> object is used with the
59 * {@link GLU GLU} tessellator methods and
60 * {@link GLUtessellatorCallback GLU callbacks}.
61 *
62 * @author Eric Veach, July 1994
63 * @author Java Port: Pepijn Van Eechhoudt, July 2003
64 * @author Java Port: Nathan Parker Burg, August 2003
65 */
66public interface GLUtessellator {}
The GLUtessellator object is used to hold the data, such as the vertices, edges and callback objects,...