/usr/lib/perl5/OpenGL/Tessellation.pod is in libopengl-perl 0.6703+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 | =head1 NAME
OpenGL::Tessellation - discussion of tessellation in POGL
=head1 SYNOPSIS
# somewhere in your drawing routine or drawlist compilation
my $tess = gluNewTess();
gluTessCallback($tess, GLU_TESS_BEGIN, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_END, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_VERTEX, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_COMBINE, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_ERROR, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_EDGE_FLAG, 'DEFAULT');
gluTessBeginPolygon($tess);
gluTessBeginContour($tess);
gluTessVertex_p($tess, 0, 200, 0);
gluTessVertex_p($tess, 150, -200, 0);
gluTessVertex_p($tess, 0, -100, 0);
gluTessVertex_p($tess, -150, -200, 0);
gluTessEndContour($tess);
gluTessEndPolygon($tess);
gluDeleteTess($tess);
=head1 DESCRIPTION
OpenGL rendering hardware typically does not have support for drawing
concave polygons or drawing polygons with windows. OpenGL provides
glu extentions that allow for translating concave polygon vertices
into triangles that can be rendered quickly on GL hardware. The
OpenGL red book chapter 11 has the full discussion of Tessellators and
the OpenGL functions (http://glprogramming.com/red/chapter11.html, or
use your favorite search engine and search for "opengl gluNewTess").
It is a good idea to read that chapter before reading the rest of this
document.
As much as possible, the POGL implementation of the tessellation
functions tries to remain faithful to the OpenGL specification. Where
it doesn't match exactly, POGL follows the spirit of the specification,
but offloads what it can to c based implementations.
Tessellation functions are safe to call during drawlist creation. It
is advisable to use drawlists, or to store the generated polygon data
into OpenGL::Array objects as these methods offer faster redraws.
=head1 FUNCTIONS
=over 4
=item C<gluNewTess>
my $tess = gluNewTess();
Returns a reference that can be passed to the remaining tesselation
functions.
Note: this isn't the c-reference returned by the normal gluNewTess() c
function, it is a struct which contains that reference as well as
other members allowing callbacks to interface cleanly with the perl
code. This means that if you have loaded other c-libraries that use
standard opengl tessellation, you will not be able to use this perl
reference directly.
The POGL implementation of gluNewTess() allows for two additional
parameters to be passed. The first is a boolean value indicating that
default c callbacks and perl callbacks should be passed rgba color
data. The second is a boolean value indicating that xyz normal data
should be passed. Eventually one additional flag indicating that
texture data should be passed will be added as well.
my $tess = gluNewTess();
# gluTessVertex_p should be passed only x,y,z vertex data
# as in gluTessVertex_p($tess, $x, $y, $z);
my $tess = gluNewTess('do_colors');
# gluTessVertex_p should be passed x,y,z AND r,g,b,a vertex data
# as in gluTessVertex_p($tess, $x, $y, $z, $r, $g, $b, $a);
my $tess = gluNewTess('do_colors', 'do_normals');
# gluTessVertex_p should be passed x,y,z AND r,g,b,a AND nx,ny,nz vertex data
# as in gluTessVertex_p($tess, $x, $y, $z, $r, $g, $b, $a, $nx, $ny, $nz);
my $tess = gluNewTess(undef, 'do_normals');
# gluTessVertex_p should be passed x,y,z AND nx,ny,nz vertex data (no colors)
# as in gluTessVertex_p($tess, $x, $y, $z, $nx, $ny, $nz);
Any true value can be passed in place of 'do_colors' and 'do_normals'
though using 'do_colors' and 'do_normals' acts as documentation.
Behavior in these modes will be discussed further for functions to
which they apply.
=item C<gluDeleteTess>
gluDeleteTess($tess);
This deletes the tessellation structure and frees up any remaining
associated memory.
=item C<gluTessCallback>
gluTessCallback($tess, GLU_TESS_BEGIN, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_BEGIN, \&glBegin);
gluTessCallback($tess, GLU_TESS_BEGIN, sub { my $enum = shift; glBegin($enum) });
gluTessCallback($tess, GLU_TESS_BEGIN); # unsets current handler
Registers handlers for each of the tessellation callback types. Takes
a tessellation reference generated by gluNewTess, a type, and a
coderef or the word 'DEFAULT'. If the word 'DEFAULT' is passed, a
default c-level callback will be installed (which will be discussed
for each callback). If no 3rd argument is given, then any handler
currently set will be removed. Valid callback types are
GLU_TESS_BEGIN
GLU_TESS_END
GLU_TESS_VERTEX
GLU_TESS_COMBINE
GLU_TESS_ERROR
GLU_TESS_EDGE_FLAG
GLU_TESS_BEGIN_DATA
GLU_TESS_END_DATA
GLU_TESS_VERTEX_DATA
GLU_TESS_COMBINE_DATA
GLU_TESS_ERROR_DATA
GLU_TESS_EDGE_FLAG_DATA
These types and their passed parameters will be discussed in the
CALLBACKS section.
The types ending with "_DATA" are similar to their non-_DATA
counterpart, but when called are passed the option $polygon_data that
can be set during gluTessBeginPolygon.
=item C<gluTessBeginPolygon>
gluTessBeginPolygon($tess);
gluTessBeginPolygon($tess, $polygon_data);
Begins the tessellation transaction. It must eventually be
ended with a gluTessEndPolygon before the tessellator will normally
begin work.
An optional second argument can be passed which can be any perl
scalar or reference. If a callback is registered using a type ending
in _DATA, this perl scalar or reference will be passed as an additional
argument to that callback.
gluTessCallback($tess, GLU_TESS_END_DATA, sub {
my $polygon_data = shift;
glEnd();
print "glEnd: (".($polygon_data->[2] eq 8 ? "YES" : "NO").")\n";
});
gluTessBeginPoly($tess, [6,7,8]); # arrayref will be passed to _DATA callbacks
A sample Object Oriented tesselation sample listed at the end of this
document makes use of this "opaque" polygon data.
=item C<gluTessEndPolygon>
gluTessEndPolygon($tess);
Finishes the tessellation transaction, which normally will immediately
fire the necessary callbacks generated by the tessellation process.
Once finished, it cleans up any accumulated temporary vertice data.
=item C<gluTessBeginContour>
gluTessBeginContour($tess);
Starts a new contour of the tessellation of the current polygon.
Please read the OpenGL documentation, and red book chapter on
tessellation for more help on when to use different contours. Should
eventually be followed by a gluTessEndContour call.
(At a high level, tessellated polygons may have windows and multiple
separate portions. Each inner and outer border of these portions
should be represented by a different contour.)
=item C<gluTessVertex_p>
gluTessVertex_p($tess, $x, $y, $z);
gluTessVertex_p($tess, $x, $y, $z, $vertex_data);
Adds a vertex to the current contour of the current polygon being
tessellated.
If the vertex callback type is set to GLU_TESS_VERTEX, the optional
$vertex_data argument will be passed to the vertex callback, and to
the combine callback (if GLU_TESS_VERTEX_DATA is used, then the
$polygon_data passed to gluTessBeginPolygon will be passed instead).
This optional opaque vertex data can be any perl scalar or reference
and can be used to pass useful information along during the
tessellation process.
If the 'do_colors' or 'do_normals' parameters were passed to gluNewTess,
then those additional properties MUST be passed as additional arguments.
# my $tess = gluNewTess('do_colors');
gluTessVertex_p($tess, $x, $y, $z, $r, $g, $b, $a);
gluTessVertex_p($tess, $x, $y, $z, $r, $g, $b, $a, $vertex_data);
# my $tess = gluNewTess('do_colors', 'do_normals');
gluTessVertex_p($tess, $x, $y, $z, $r, $g, $b, $a, $nx, $ny, $nz);
gluTessVertex_p($tess, $x, $y, $z, $r, $g, $b, $a, $nx, $ny, $nz, $vertex_data);
# my $tess = gluNewTess(undef, 'do_normals');
gluTessVertex_p($tess, $x, $y, $z, $nx, $ny, $nz);
gluTessVertex_p($tess, $x, $y, $z, $nx, $ny, $nz, $vertex_data);
=back
=head1 CALLBACKS
All of the callbacks support a 'DEFAULT' handler that can be installed
by passing the word 'DEFAULT' in place of the callback code reference.
The DEFAULT c implementations are there to avoid needing to round trip
out to perl. The defaults employed are described for each of the
callback types.
With the exception of the COMBINE callback, return values from
callbacks are discarded.
=over 4
=item C<GLU_TESS_BEGIN>
gluTessCallback($tess, GLU_TESS_BEGIN, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_BEGIN, \&glBegin);
gluTessCallback($tess, GLU_TESS_BEGIN, sub {
my $enum = shift;
glBegin($enum);
});
The 'DEFAULT' option installs a c-handler that calls the glBegin c
function directly without round-tripping out to perl.
If $polygon_data was set during gluTessBeginPolygon, it is discarded.
=item C<GLU_TESS_BEGIN_DATA>
Similar to GLU_TESS_BEGIN but will be passed optional $polygon_data
set in gluTessBeginPolygon if any. The 'DEFAULT' handler will ignore
this data.
gluTessCallback($tess, GLU_TESS_BEGIN_DATA, sub {
my ($enum, $polygon_data) = @_;
glBegin($enum);
print "glBegin - and I received polygon_data\n" if $polygon_data;
});
=item C<GLU_TESS_END>
gluTessCallback($tess, GLU_TESS_END, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_END, \&glEnd);
gluTessCallback($tess, GLU_TESS_END, sub { glEnd() });
The 'DEFAULT' option installs a c-handler that calls the glEnd c
function directly without round-tripping out to perl.
If $polygon_data was set during gluTessBeginPolygon, it is discarded.
=item C<GLU_TESS_END_DATA>
Similar to GLU_TESS_END but will be passed optional $polygon_data set
in gluTessBeginPolygon if any. The 'DEFAULT' handler will ignore this
data.
gluTessCallback($tess, GLU_TESS_END_DATA, sub {
my ($polygon_data) = @_;
glEnd();
print "glEnd - and I received polygon_data\n" if $polygon_data;
});
=item C<GLU_TESS_VERTEX>
The GLU_TESS_VERTEX callback handler has slightly different
behavior depending on how gluNewTess was called. The optional behaviors
allow for sane default processing of colors and normals without needing
to roundtrip out to perl.
my $tess = gluNewTess();
gluTessCallback($tess, GLU_TESS_VERTEX, 'DEFAULT');
# the following will break if vertex_data is passed to gluTessVertex_p
gluTessCallback($tess, GLU_TESS_VERTEX, \&glVertex3f);
gluTessCallback($tess, GLU_TESS_VERTEX, sub {
my ($x, $y, $z) = @_;
glVertex3f($x, $y, $z);
});
# you can also pass vertex_data to gluTessVertex_p
gluTessCallback($tess, GLU_TESS_VERTEX, sub {
my ($x, $y, $z, $vertex_data) = @_;
glVertex3f($x, $y, $z);
print "glVertex - and I received vertex_data\n" if $vertex_data;
});
The 'DEFAULT' option installs a c-handler that calls the glVertex c
function directly without round-tripping out to perl. The DEFAULT
handler discards any polygon_data or vertex_data.
IF $vertex_data was set during gluTessVertex_p it will be passed as the final
argument.
If gluNewTess was passed 'do_colors' then the GLU_TESS_VERTEX callback
will also be passed the rgba information. The 'DEFAULT' option
will pass the color information to glColor4f before calling glVertex3f.
my $tess = gluNewTess('do_colors');
gluTessCallback($tess, GLU_TESS_VERTEX, sub {
my ($x, $y, $z, $r, $g, $b, $a, $vertex_data) = @_;
glColor4f($r, $g, $b, $a);
glVertex3f($x, $y, $z);
});
If gluNewTess was passed 'do_normals' then the GLU_TESS_VERTEX callback
will also be passed the normal x,y,z information. The 'DEFAULT' option
will pass the normal information to glNormal3f before calling glVertex3f.
my $tess = gluNewTess('do_colors', 'do_normals');
gluTessCallback($tess, GLU_TESS_VERTEX, sub {
my ($x, $y, $z, $r, $g, $b, $a, $nx, $ny, $nz, $vertex_data) = @_;
glColor4f($r, $g, $b, $a);
glNormalf($nx, $ny, $nz);
glVertex3f($x, $y, $z);
});
# OR
my $tess = gluNewTess(undef, 'do_normals');
gluTessCallback($tess, GLU_TESS_VERTEX, sub {
my ($x, $y, $z, $nx, $ny, $nz, $vertex_data) = @_;
glNormalf($nx, $ny, $nz);
glVertex3f($x, $y, $z);
});
In all cases, any optional vertex_data will be passed as the final argument.
=item C<GLU_TESS_VERTEX_DATA>
Similar to GLU_TESS_VERTEX but will be passed optional $polygon_data
set in gluTessBeginPolygon (if any) rather than the optional
$vertex_data passed to gluTessVertex_p. The 'DEFAULT' handler will
ignore this data.
gluTessCallback($tess, GLU_TESS_VERTEX_DATA, sub {
my ($x, $y, $z, $vertex_data) = @_;
glVertex3f($x, $y, $z);
print "glVertex - and I received vertex_data\n" if $vertex_data;
});
=item C<GLU_TESS_COMBINE>
gluTessCallback($tess, GLU_TESS_COMBINE, 'DEFAULT');
# works with gluTessCallback($tess, GLU_TESS_VERTEX, 'DEFAULT');
# OR
# the following callback is valid for gluNewTess() (no do_colors or do_normals)
# using gluTessVertex_p($tess, $x, $y, $z);
my $tess = gluNewTess();
gluTessCallback($tess, GLU_TESS_COMBINE, sub {
my ($x, $y, $z, # new vertex location
$v0, $v1, $v2, $v3, # border vertex arrayrefs
$w0, $w1, $w2, $w3, # border vertex weights
$polygon_data) = @_; # optional data passed to gluTessBeginPolygon
return ($x, $y, $z);
});
# works with gluTessCallback($tess, GLU_TESS_VERTEX, 'DEFAULT');
# OR
# the following callback is valid for gluNewTess() when vertex data is passed
# using gluTessVertex_p($tess, $x, $y, $z, [$r, $g, $b, $a]);
# The DEFAULT callback cannot automatically proceess this type of data
# but passing data to a custom handler this way could handle any arbitrary data passed to it
my $tess = gluNewTess();
use constant _r => 0;
use constant _g => 1;
use constant _b => 2;
use constant _a => 3;
gluTessCallback($tess, GLU_TESS_COMBINE, sub {
my ($x, $y, $z, # new vertex location
$v0, $v1, $v2, $v3, # border vertex arrayrefs
$w0, $w1, $w2, $w3, # border vertex weights
$polygon_data) = @_; # optional data passed to gluTessBeginPolygon
# $v0 will contain [$x, $y, $z, [$r, $g, $b, $a]]
my @rgba = map {$_->[3]} $v0, $v1, $v2, $v3;
# generate a point with color weighted from the surrounding vertices
# then return that color information in the same way we received it (an rgba arrayref)
return (
$x, $y, $z,
[$w0*$rgba[0]->[_r] + $w1*$rgba[1]->[_r] + $w2*$rgba[2]->[_r] + $w3*$rgba[3]->[_r],
$w0*$rgba[0]->[_g] + $w1*$rgba[1]->[_g] + $w2*$rgba[2]->[_g] + $w3*$rgba[3]->[_g],
$w0*$rgba[0]->[_b] + $w1*$rgba[1]->[_b] + $w2*$rgba[2]->[_b] + $w3*$rgba[3]->[_b],
$w0*$rgba[0]->[_a] + $w1*$rgba[1]->[_a] + $w2*$rgba[2]->[_a] + $w3*$rgba[3]->[_a]],
);
});
# works with gluTessCallback($tess, GLU_TESS_VERTEX, sub {
# my ($x, $y, $z, $rgba) = @_;
# glColor4f(@$rgba);
# glVertex3f($x, $y, $z);
# });
# OR
# the following callback is valid for gluNewTess('do_colors')
# using gluTessVertex_p($tess, $x, $y, $z, $r, $g, $b, $a);
# the DEFAULT callback COULD automatically proceess this type of data as well if additional vertex data is not passed
my $tess = gluNewTess('do_colors');
use constant _r => 3;
use constant _g => 4;
use constant _b => 5;
use constant _a => 6;
gluTessCallback($tess, GLU_TESS_COMBINE, sub {
my ($x, $y, $z, # new vertex location
$v0, $v1, $v2, $v3, # border vertex arrayrefs
$w0, $w1, $w2, $w3, # border vertex weights
$polygon_data) = @_; # optional data passed to gluTessBeginPolygon
# $v0 will contain [$x, $y, $z, $r, $g, $b, $a]
return ( # generate a point with color weighted from the surrounding vertices
$x, $y, $z,
$w0*$v0->[_r] + $w1*$v1->[_r] + $w2*$v2->[_r] + $w3*$v3->[_r],
$w0*$v0->[_g] + $w1*$v1->[_g] + $w2*$v2->[_g] + $w3*$v3->[_g],
$w0*$v0->[_b] + $w1*$v1->[_b] + $w2*$v2->[_b] + $w3*$v3->[_b],
$w0*$v0->[_a] + $w1*$v1->[_a] + $w2*$v2->[_a] + $w3*$v3->[_a],
($v0->[7] || $v1->[7] || $v2->[7] || $v3->[7]), # if we received vertex data - return some for the new vertex
);
});
# works with gluTessCallback($tess, GLU_TESS_VERTEX, 'DEFAULT');
# OR
# works with gluTessCallback($tess, GLU_TESS_VERTEX, sub {
# my ($x, $y, $z, $r, $g, $b, $a, $vertex_data) = @_;
# glColor4f($r, $g, $b, $a);
# glVertex3f($x, $y, $z);
# });
The combine callback is called if the tessellator decides a new vertex
is needed. This will happen with self intersecting polygons. In this
case, the COMBINE callback can be used to interpolate appropriate
values for normals, and colors, or for any desired information.
The combine callback will be passed the following:
=over 4
=item C<$x, $y, $z>
The x y and z coordinates of the new vertex being created.
=item C<$v0, $v1, $v2, $v3>
Arrayrefs of vertex information for the vertices bordering this
new vertex (the ones that caused the new vertex to be created).
By default if gluNewTess() is called, these arrayrefs will be passed:
my ($x, $y, $z, $vertex_data) = @$v0;
# received from gluTessVertex_p($tess, $x, $y, $z, $vertex_data);
If gluNewTess('do_colors') is called, the following will be passed:
my ($x, $y, $z, $r, $g, $b, $a, $vertex_data) = @$v0;
# received from gluTessVertex_p($tess, $x, $y, $z, $r, $g, $b, $a, $vertex_data);
If gluNewTess('do_colors', 'do_normals') is called, the following will be passed:
my ($x, $y, $z, $r, $g, $b, $a, $nx, $ny, $nz, $vertex_data) = @$v0;
# received from gluTessVertex_p($tess, $x, $y, $z, $r, $g, $b, $a, $nx, $ny, $nz, $vertex_data);
If gluNewTess(undef, 'do_normals') is called, the following will be passed:
my ($x, $y, $z, $nx, $ny, $nz, $vertex_data) = @$v0;
# received from gluTessVertex_p($tess, $x, $y, $z, $nx, $ny, $nz, $vertex_data);
In all cases, the data returned by the COMBINE callback should be in the same
format that each of the vertices are in when passed into the COMBINE callback.
=item C<$w0, $w1, $w2, $w3>
Weights of the participating vertices (weight $w0 corresponds to vertex $v0).
=item C<optional $polygon_data>
Any optional data passed to gluTessBeginPolygon. Normally this would
only be passed to GLU_TESS_COMBINE_DATA, but GLU_TESS_COMBINE_DATA
and GLU_TESS_COMBINE share the same code implementation.
=back
=item C<GLU_TESS_COMBINE_DATA>
Identical in function to the GLU_TESS_COMBINE handler. They
use the same callback implementation.
=item C<GLU_TESS_ERROR>
gluTessCallback($tess, GLU_TESS_ERROR, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_ERROR, \&glEdgeFlag);
gluTessCallback($tess, GLU_TESS_ERROR, sub {
my $errno = shift;
my $err = gluErrorString($errno);
warn "Received a glu tess error ($errno - $err)\n";
});
The 'DEFAULT' option installs a c-handler that warns with the
appropriate gluErrorString.
If $polygon_data was set during gluTessBeginPolygon, it is discarded.
=item C<GLU_TESS_ERROR_DATA>
Similar to GLU_TESS_ERROR but will be passed optional $polygon_data
set in gluTessBeginPolygon if any. The 'DEFAULT' handler will ignore
this data.
gluTessCallback($tess, GLU_TESS_ERROR_DATA, sub {
my ($errno, $polygon_data) = @_;
my $err = gluErrorString($errno);
warn "Received a glu tess error ($errno - $err)\n";
warn "And I received polygon_data\n" if $polygon_data;
});
=item C<GLU_TESS_EDGE_FLAG>
gluTessCallback($tess, GLU_TESS_EDGE_FLAG, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_EDGE_FLAG, \&glEdgeFlag);
gluTessCallback($tess, GLU_TESS_EDGE_FLAG, sub {
my ($flag) = @_;
glEdgeFlag($flag);
});
The 'DEFAULT' option installs a c-handler that calls the glEdgeFlag c
function directly without round-tripping out to perl.
If $polygon_data was set during gluTessBeginPolygon, it is discarded.
=item C<GLU_TESS_EDGE_FLAG_DATA>
Similar to GLU_TESS_EDGE_FLAG but will be passed $polygon_data set in
gluTessBeginPolygon if any. The 'DEFAULT' handler will ignore this
data.
gluTessCallback($tess, GLU_TESS_EDGE_FLAG_DATA, sub {
my ($flag, $polygon_data) = @_;
glEdgeFlag($flag);
print "glEdgeFlag - and I received polygon_data\n" if $polygon_data;
});
=back
=head1 Example: Basic Arrowhead
use OpenGL qw(:all);
glutInit();
glutInitWindowSize(501, 501);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE);
glutCreateWindow("Tessellation");
glMatrixMode(GL_PROJECTION());
glLoadIdentity();
glOrtho(-250,250,-250,250,-1.0,1.0);
glMatrixMode(GL_MODELVIEW);
my $view_triangles = 1; # set to zero to show polygon
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE) if $view_triangles;
glutDisplayFunc(sub {
glColor3f(1,1,1);
my $tess = gluNewTess();
gluTessCallback($tess, GLU_TESS_BEGIN, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_END, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_VERTEX, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_COMBINE, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_ERROR, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_EDGE_FLAG, 'DEFAULT') if ! $view_triangles;
gluTessBeginPolygon($tess);
gluTessBeginContour($tess);
gluTessVertex_p($tess, 0, 200, 0);
gluTessVertex_p($tess, 150, -200, 0);
gluTessVertex_p($tess, 0, -100, 0);
gluTessVertex_p($tess, -150, -200, 0);
gluTessEndContour($tess);
gluTessEndPolygon($tess);
gluDeleteTess($tess);
glutSwapBuffers();
});
glutMainLoop();
=head1 Example: Multiple contours
use OpenGL qw(:all);
glutInit();
glutInitWindowSize(501, 501);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE);
glutCreateWindow("Tessellation");
glMatrixMode(GL_PROJECTION());
glLoadIdentity();
glOrtho(-250,250,-250,250,-1.0,1.0);
glMatrixMode(GL_MODELVIEW);
my $view_triangles = 1; # set to zero to show polygon
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE) if $view_triangles;
glutDisplayFunc(sub {
glColor3f(1,1,1);
my $v = [[[125,0,0], [150,150,0], [0,125,0], [-150,150,0],
[-125,0,0], [-150,-150,0], [0,-125,0], [150,-150,0], [125,0,0]],
[[75,0,0], [100,100,0], [0,75,0], [-100,100,0],
[-75,0,0], [-100,-100,0], [0,-75,0], [100,-100,0], [75,0,0]]
];
my $tess = gluNewTess();
gluTessCallback($tess, GLU_TESS_BEGIN, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_END, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_VERTEX, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_COMBINE, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_ERROR, 'DEFAULT');
gluTessCallback($tess, GLU_TESS_EDGE_FLAG, 'DEFAULT') if ! $view_triangles;
gluTessBeginPolygon($tess);
foreach (@$v) {
gluTessBeginContour($tess);
foreach (@$_) {
gluTessVertex_p($tess, @$_);
}
gluTessEndContour($tess);
}
gluTessEndPolygon($tess);
gluDeleteTess($tess);
glutSwapBuffers();
});
glutMainLoop();
=head1 Example: Sample OO Tessellation interface using polygon_data
use OpenGL qw(:all);
glutInit();
glutInitWindowSize(501, 501);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE);
glutCreateWindow("Tessellation");
glMatrixMode(GL_PROJECTION());
glLoadIdentity();
glOrtho(-250,250,-250,250,-1.0,1.0);
glMatrixMode(GL_MODELVIEW);
my $view_triangles = 0;
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE) if $view_triangles;
glutDisplayFunc(sub {
glColor3f(1,1,1);
my $v = [[[125,0,0], [150,150,0, 0,1,0], [0,125,0], [-150,150,0, 1,0,0],
[-125,0,0], [-150,-150,0, 0,0,1], [0,-125,0], [150,-150,0, 1,1,0], [125,0,0]],
[[75,0,0], [100,100,0], [0,75,0], [-100,100,0],
[-75,0,0], [-100,-100,0], [0,-75,0], [100,-100,0], [75,0,0]]
];
OpenGL::Tess->new(do_colors => 1, no_edge_flag => $view_triangles)->draw_contours(@$v);
glutSwapBuffers();
});
glutMainLoop();
###----------------------------------------------------------------###
package OpenGL::Tess;
# Sample object oriented Tessellator
# OpenGL::Tess->new(do_colors => 1, no_edge_flag => $view_triangles)->draw_contours(@$v);
use strict;
sub new {
my $class = shift;
my $self = bless {@_}, $class;
my $tess = $self->{'_tess'} = OpenGL::gluNewTess($self->do_colors);
for my $cb (qw(begin end vertex combine error edge_flag)) {
my $enum = OpenGL->can("GLU_TESS_\U${cb}_DATA") || die "Couldn't find callback for $cb";
my $name = "_$cb";
OpenGL::gluTessCallback($tess, $enum->(), sub { $_[-1]->$name(@_) });
}
return $self;
}
sub DESTROY {
my $tess = shift->{'_tess'};
OpenGL::gluDeleteTess($tess) if $tess;
}
sub tess {
my $self = shift;
return $self->{'_tess'} || die "Missing tess";
}
sub do_colors { shift->{'do_colors'} }
sub begin_polygon {
my $self = shift;
my $tess = $self->tess;
# self will be passed as last arg ([-1]) to all callbacks as opaque polygon data
return OpenGL::gluTessBeginPolygon($tess, $self);
}
sub end_polygon { OpenGL::gluTessEndPolygon( shift->tess) }
sub begin_contour { OpenGL::gluTessBeginContour(shift->tess) }
sub end_contour { OpenGL::gluTessEndContour( shift->tess) }
sub draw_contours {
my $self = shift;
$self->begin_polygon;
foreach my $c (@_) {
$self->begin_contour;
$self->add_vertex(@$_) for @$c;
$self->end_contour;
}
$self->end_polygon;
}
sub add_vertex {
my $self = shift;
die 'Usage $self->add_vertex($x,$y,$z)' if @_ < 3;
if ($self->do_colors) {
push @_, 1 for @_ .. 6;
OpenGL::gluTessVertex_p($self->tess, @_[0..6]);
} else {
OpenGL::gluTessVertex_p($self->tess, @_[0..3]);
}
}
sub _begin {
my ($self, $enum) = @_;
OpenGL::glBegin($enum);
}
sub _end { OpenGL::glEnd() }
sub _vertex {
my ($self, $x, $y, $z, $r, $g, $b, $a) = @_;
OpenGL::glColor4f($r, $g, $b, $a) if $self->do_colors;
OpenGL::glVertex3f($x, $y, $z);
}
sub _edge_flag {
my ($self, $flag) = @_;
return if $self->{'no_edge_flag'};
OpenGL::glEdgeFlag($flag);
}
sub _error {
my ($self, $errno) = @_;
warn __PACKAGE__ ." error: ".OpenGL::gluErrorString($errno);
}
sub _combine {
my ($self, $x, $y, $z, $v0, $v1, $v2, $v3, $w0, $w1, $w2, $w3) = @_;
return ($x, $y, $z) if !$self->do_colors;
return ($x, $y, $z,
$w0*$v0->[3] + $w1*$v1->[3] + $w2*$v2->[3] + $w3*$v3->[3],
$w0*$v0->[4] + $w1*$v1->[4] + $w2*$v2->[4] + $w3*$v3->[4],
$w0*$v0->[5] + $w1*$v1->[5] + $w2*$v2->[5] + $w3*$v3->[5],
$w0*$v0->[6] + $w1*$v1->[6] + $w2*$v2->[6] + $w3*$v3->[6]);
}
1;
=head1 AUTHOR
Paul Seamons - paul AT seamons dot com - 2011
=cut
|