pango 3.1.1-x64-mingw32 → 3.1.2-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +27 -5
- data/ext/pango/depend +2 -2
- data/ext/pango/extconf.rb +32 -28
- data/ext/pango/pango.def +0 -16
- data/ext/pango/rb-pango-attr-list.c +64 -0
- data/ext/pango/rb-pango-attribute.c +147 -0
- data/ext/pango/rb-pango-context.c +79 -0
- data/ext/pango/{rbpangoconversions.h → rb-pango-conversions.h} +4 -6
- data/ext/pango/rb-pango-private.h +27 -0
- data/ext/pango/rb-pango.c +32 -0
- data/ext/pango/rb-pango.h +29 -0
- data/extconf.rb +25 -9
- data/lib/2.2/pango.so +0 -0
- data/lib/2.3/pango.so +0 -0
- data/lib/2.4/pango.so +0 -0
- data/lib/pango.rb +24 -68
- data/lib/pango/cairo-loader.rb +63 -0
- data/lib/pango/color.rb +31 -0
- data/lib/pango/deprecated.rb +37 -0
- data/lib/pango/font-description.rb +29 -0
- data/lib/pango/language.rb +29 -0
- data/lib/pango/layout.rb +41 -0
- data/lib/pango/loader.rb +87 -0
- data/lib/pango/markup.rb +31 -0
- data/lib/pango/matrix.rb +64 -0
- data/lib/pango/rectangle.rb +28 -0
- data/lib/pango/version.rb +30 -0
- data/test/pango-test-utils.rb +7 -7
- data/test/run-test.rb +34 -8
- data/test/test-attr-list.rb +28 -0
- data/test/test-color.rb +1 -3
- data/test/test-context.rb +4 -4
- data/test/test-enum.rb +37 -0
- data/test/test-font-description.rb +31 -0
- data/test/test-language.rb +2 -1
- data/test/test-layout.rb +12 -0
- data/test/test-markup.rb +30 -0
- data/test/test-matrix.rb +131 -5
- data/test/test-rectangle.rb +16 -3
- data/vendor/local/bin/derb.exe +0 -0
- data/vendor/local/bin/genbrk.exe +0 -0
- data/vendor/local/bin/genccode.exe +0 -0
- data/vendor/local/bin/gencfu.exe +0 -0
- data/vendor/local/bin/gencmn.exe +0 -0
- data/vendor/local/bin/gencnval.exe +0 -0
- data/vendor/local/bin/gendict.exe +0 -0
- data/vendor/local/bin/gennorm2.exe +0 -0
- data/vendor/local/bin/genrb.exe +0 -0
- data/vendor/local/bin/gensprep.exe +0 -0
- data/vendor/local/bin/hb-ot-shape-closure.exe +0 -0
- data/vendor/local/bin/hb-shape.exe +0 -0
- data/vendor/local/bin/hb-view.exe +0 -0
- data/vendor/local/bin/icuinfo.exe +0 -0
- data/vendor/local/bin/icupkg.exe +0 -0
- data/vendor/local/bin/libgraphene-1.0-0.dll +0 -0
- data/vendor/local/bin/libharfbuzz-0.dll +0 -0
- data/vendor/local/bin/libpango-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangocairo-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangoft2-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangowin32-1.0-0.dll +0 -0
- data/vendor/local/bin/makeconv.exe +0 -0
- data/vendor/local/bin/pango-view.exe +0 -0
- data/vendor/local/bin/pkgdata.exe +0 -0
- data/vendor/local/bin/uconv.exe +0 -0
- data/vendor/local/include/graphene-1.0/graphene-box.h +148 -0
- data/vendor/local/include/graphene-1.0/graphene-euler.h +140 -0
- data/vendor/local/include/graphene-1.0/graphene-frustum.h +93 -0
- data/vendor/local/include/graphene-1.0/graphene-gobject.h +119 -0
- data/vendor/local/include/graphene-1.0/graphene-macros.h +105 -0
- data/vendor/local/include/graphene-1.0/graphene-matrix.h +288 -0
- data/vendor/local/include/graphene-1.0/graphene-plane.h +99 -0
- data/vendor/local/include/graphene-1.0/graphene-point.h +120 -0
- data/vendor/local/include/graphene-1.0/graphene-point3d.h +140 -0
- data/vendor/local/include/graphene-1.0/graphene-quad.h +80 -0
- data/vendor/local/include/graphene-1.0/graphene-quaternion.h +136 -0
- data/vendor/local/include/graphene-1.0/graphene-ray.h +98 -0
- data/vendor/local/include/graphene-1.0/graphene-rect.h +180 -0
- data/vendor/local/include/graphene-1.0/graphene-simd4f.h +1870 -0
- data/vendor/local/include/graphene-1.0/graphene-simd4x4f.h +1045 -0
- data/vendor/local/include/graphene-1.0/graphene-size.h +105 -0
- data/vendor/local/include/graphene-1.0/graphene-sphere.h +97 -0
- data/vendor/local/include/graphene-1.0/graphene-triangle.h +105 -0
- data/vendor/local/include/graphene-1.0/graphene-types.h +88 -0
- data/vendor/local/include/graphene-1.0/graphene-vec2.h +130 -0
- data/vendor/local/include/graphene-1.0/graphene-vec3.h +155 -0
- data/vendor/local/include/graphene-1.0/graphene-vec4.h +156 -0
- data/vendor/local/include/graphene-1.0/graphene-version-macros.h +185 -0
- data/vendor/local/include/graphene-1.0/graphene-version.h +70 -0
- data/vendor/local/include/graphene-1.0/graphene.h +61 -0
- data/vendor/local/include/harfbuzz/hb-common.h +36 -0
- data/vendor/local/include/harfbuzz/hb-font.h +18 -1
- data/vendor/local/include/harfbuzz/hb-ot-var.h +105 -0
- data/vendor/local/include/harfbuzz/hb-ot.h +1 -0
- data/vendor/local/include/harfbuzz/hb-shape.h +0 -16
- data/vendor/local/include/harfbuzz/hb-version.h +2 -2
- data/vendor/local/include/pango-1.0/pango/pango-engine.h +6 -6
- data/vendor/local/include/pango-1.0/pango/pango-features.h +2 -2
- data/vendor/local/include/pango-1.0/pango/pango-layout.h +1 -1
- data/vendor/local/lib/girepository-1.0/Graphene-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/Pango-1.0.typelib +0 -0
- data/vendor/local/lib/graphene-1.0/include/graphene-config.h +89 -0
- data/vendor/local/lib/icudt.dll +0 -0
- data/vendor/local/lib/icudt58.dll +0 -0
- data/vendor/local/lib/icuin.dll +0 -0
- data/vendor/local/lib/icuin58.dll +0 -0
- data/vendor/local/lib/icuio.dll +0 -0
- data/vendor/local/lib/icuio58.dll +0 -0
- data/vendor/local/lib/icutest.dll +0 -0
- data/vendor/local/lib/icutest58.dll +0 -0
- data/vendor/local/lib/icutu.dll +0 -0
- data/vendor/local/lib/icutu58.dll +0 -0
- data/vendor/local/lib/icuuc.dll +0 -0
- data/vendor/local/lib/icuuc58.dll +0 -0
- data/vendor/local/lib/libgraphene-1.0.dll.a +0 -0
- data/vendor/local/lib/libgraphene-1.0.la +41 -0
- data/vendor/local/lib/libharfbuzz-icu.a +0 -0
- data/vendor/local/lib/libharfbuzz-icu.la +1 -1
- data/vendor/local/lib/libharfbuzz.dll.a +0 -0
- data/vendor/local/lib/libharfbuzz.la +1 -1
- data/vendor/local/lib/libicudt.dll.a +0 -0
- data/vendor/local/lib/libicuin.dll.a +0 -0
- data/vendor/local/lib/libicuio.dll.a +0 -0
- data/vendor/local/lib/libicutest.dll.a +0 -0
- data/vendor/local/lib/libicutu.dll.a +0 -0
- data/vendor/local/lib/libicuuc.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.la +1 -1
- data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangocairo-1.0.la +1 -1
- data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangoft2-1.0.la +1 -1
- data/vendor/local/lib/libpangowin32-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangowin32-1.0.la +1 -1
- data/vendor/local/lib/pkgconfig/graphene-1.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/graphene-gobject-1.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/harfbuzz-icu.pc +1 -1
- data/vendor/local/lib/pkgconfig/harfbuzz.pc +1 -1
- data/vendor/local/lib/pkgconfig/pango.pc +1 -1
- data/vendor/local/lib/pkgconfig/pangocairo.pc +1 -1
- data/vendor/local/lib/pkgconfig/pangoft2.pc +1 -1
- data/vendor/local/lib/pkgconfig/pangowin32.pc +1 -1
- data/vendor/local/share/gir-1.0/Graphene-1.0.gir +8180 -0
- data/vendor/local/share/gir-1.0/Pango-1.0.gir +12 -16
- data/vendor/local/share/gtk-doc/html/graphene/annotation-glossary.html +57 -0
- data/vendor/local/share/gtk-doc/html/graphene/api-index.html +1985 -0
- data/vendor/local/share/gtk-doc/html/graphene/ch01.html +97 -0
- data/vendor/local/share/gtk-doc/html/graphene/deprecated-api-index.html +34 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Box.html +1252 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Euler.html +886 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Frustum.html +527 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-GObject-integration.html +147 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Matrix.html +2959 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Plane.html +641 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Point.html +689 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Point3D.html +916 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Quad.html +418 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Quaternion.html +1056 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Ray.html +596 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Rectangle.html +1483 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-SIMD-matrix.html +1475 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-SIMD-vector.html +3046 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Size.html +489 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Sphere.html +641 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Triangle.html +705 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Vectors.html +3715 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene-Versioning-information.html +104 -0
- data/vendor/local/share/gtk-doc/html/graphene/graphene.devhelp2 +534 -0
- data/vendor/local/share/gtk-doc/html/graphene/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/index.html +107 -0
- data/vendor/local/share/gtk-doc/html/graphene/ix03.html +1313 -0
- data/vendor/local/share/gtk-doc/html/graphene/ix04.html +582 -0
- data/vendor/local/share/gtk-doc/html/graphene/ix05.html +151 -0
- data/vendor/local/share/gtk-doc/html/graphene/ix06.html +34 -0
- data/vendor/local/share/gtk-doc/html/graphene/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/{pango/api-index-1-40.html → graphene/object-tree.html} +14 -11
- data/vendor/local/share/gtk-doc/html/graphene/rectangle-intersection.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/rectangle-union.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/rectangle.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/style.css +479 -0
- data/vendor/local/share/gtk-doc/html/graphene/triangle-barycentric.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/graphene/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/api-index-1-2-3.html +2 -2
- data/vendor/local/share/gtk-doc/html/harfbuzz/{api-index-1-4-0.html → api-index-1-3-3.html} +2 -2
- data/vendor/local/share/gtk-doc/html/harfbuzz/api-index-full.html +104 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/deprecated-api-index.html +9 -2
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-Shaping.html +1 -1
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-font.html +156 -40
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-gobject.html +73 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-graphite2.html +1 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-layout.html +49 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-math.html +174 -177
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape-plan.html +40 -0
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-version.html +2 -2
- data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz.devhelp2 +28 -10
- data/vendor/local/share/gtk-doc/html/harfbuzz/index.html +1 -1
- data/vendor/local/share/gtk-doc/html/harfbuzz/pt02.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/PangoRenderer.html +2 -2
- data/vendor/local/share/gtk-doc/html/pango/annotation-glossary.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/api-index-full.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/index.html +2 -23
- data/vendor/local/share/gtk-doc/html/pango/lowlevel.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +69 -69
- data/vendor/local/share/gtk-doc/html/pango/pango-CoreText-Fonts.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +5 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +5 -4
- data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +8 -4
- data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +4 -4
- data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +3 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +3 -3
- data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/pango.html +1 -1
- data/vendor/local/share/gtk-doc/html/pango/rendering.html +1 -1
- data/vendor/local/share/man/man1/pango-view.1 +2 -2
- metadata +119 -78
- data/README +0 -32
- data/ext/pango/rbpango.c +0 -356
- data/ext/pango/rbpango.h +0 -95
- data/ext/pango/rbpangoanalysis.c +0 -218
- data/ext/pango/rbpangoattribute.c +0 -506
- data/ext/pango/rbpangoattriterator.c +0 -141
- data/ext/pango/rbpangoattrlist.c +0 -101
- data/ext/pango/rbpangocairo.c +0 -122
- data/ext/pango/rbpangocairocontext.c +0 -131
- data/ext/pango/rbpangocolor.c +0 -120
- data/ext/pango/rbpangocontext.c +0 -344
- data/ext/pango/rbpangocoverage.c +0 -106
- data/ext/pango/rbpangoengine.c +0 -73
- data/ext/pango/rbpangofont.c +0 -110
- data/ext/pango/rbpangofontdescription.c +0 -282
- data/ext/pango/rbpangofontface.c +0 -73
- data/ext/pango/rbpangofontfamily.c +0 -79
- data/ext/pango/rbpangofontmap.c +0 -102
- data/ext/pango/rbpangofontmetrics.c +0 -85
- data/ext/pango/rbpangofontset.c +0 -69
- data/ext/pango/rbpangofontsetsimple.c +0 -60
- data/ext/pango/rbpangoglyphinfo.c +0 -123
- data/ext/pango/rbpangoglyphitem.c +0 -125
- data/ext/pango/rbpangoglyphstring.c +0 -151
- data/ext/pango/rbpangogravity.c +0 -54
- data/ext/pango/rbpangoitem.c +0 -95
- data/ext/pango/rbpangolanguage.c +0 -94
- data/ext/pango/rbpangolayout.c +0 -583
- data/ext/pango/rbpangolayoutiter.c +0 -189
- data/ext/pango/rbpangolayoutline.c +0 -243
- data/ext/pango/rbpangologattr.c +0 -109
- data/ext/pango/rbpangomatrix.c +0 -143
- data/ext/pango/rbpangoprivate.h +0 -49
- data/ext/pango/rbpangorectangle.c +0 -170
- data/ext/pango/rbpangorenderer.c +0 -193
- data/ext/pango/rbpangoscript.c +0 -84
- data/ext/pango/rbpangoscriptiter.c +0 -92
- data/ext/pango/rbpangotabarray.c +0 -128
- data/sample/attribute.rb +0 -82
- data/sample/break.rb +0 -28
- data/sample/gdk_layout.rb +0 -27
- data/sample/glyphstring.rb +0 -61
- data/sample/item.rb +0 -37
- data/sample/label.rb +0 -23
- data/sample/layout.rb +0 -102
- data/sample/pango_cairo.rb +0 -66
- data/sample/parse.rb +0 -33
- data/sample/sample.txt +0 -10
- data/sample/script.rb +0 -23
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-10.html +0 -134
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-12.html +0 -48
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-14.html +0 -63
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-16.html +0 -227
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-18.html +0 -151
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-2.html +0 -121
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-20.html +0 -86
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-22.html +0 -123
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-24.html +0 -96
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-26.html +0 -45
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-30.html +0 -38
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-31-0.html +0 -38
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-32-4.html +0 -52
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-32.html +0 -41
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-34.html +0 -38
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-38.html +0 -79
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-4.html +0 -200
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-6.html +0 -164
- data/vendor/local/share/gtk-doc/html/pango/api-index-1-8.html +0 -170
- data/vendor/local/share/gtk-doc/html/pango/api-index-deprecated.html +0 -441
@@ -2586,12 +2586,10 @@ size in device units.</doc>
|
|
2586
2586
|
</instance-parameter>
|
2587
2587
|
</parameters>
|
2588
2588
|
</virtual-method>
|
2589
|
-
<virtual-method name="find_shaper"
|
2590
|
-
invoker="find_shaper"
|
2591
|
-
introspectable="0">
|
2589
|
+
<virtual-method name="find_shaper" invoker="find_shaper">
|
2592
2590
|
<doc xml:space="preserve">Finds the best matching shaper for a font for a particular
|
2593
2591
|
language tag and character point.</doc>
|
2594
|
-
<return-value>
|
2592
|
+
<return-value transfer-ownership="none">
|
2595
2593
|
<doc xml:space="preserve">the best matching shaper.</doc>
|
2596
2594
|
<type name="EngineShape" c:type="PangoEngineShape*"/>
|
2597
2595
|
</return-value>
|
@@ -2766,12 +2764,10 @@ size in points.</doc>
|
|
2766
2764
|
</instance-parameter>
|
2767
2765
|
</parameters>
|
2768
2766
|
</method>
|
2769
|
-
<method name="find_shaper"
|
2770
|
-
c:identifier="pango_font_find_shaper"
|
2771
|
-
introspectable="0">
|
2767
|
+
<method name="find_shaper" c:identifier="pango_font_find_shaper">
|
2772
2768
|
<doc xml:space="preserve">Finds the best matching shaper for a font for a particular
|
2773
2769
|
language tag and character point.</doc>
|
2774
|
-
<return-value>
|
2770
|
+
<return-value transfer-ownership="none">
|
2775
2771
|
<doc xml:space="preserve">the best matching shaper.</doc>
|
2776
2772
|
<type name="EngineShape" c:type="PangoEngineShape*"/>
|
2777
2773
|
</return-value>
|
@@ -2959,9 +2955,9 @@ output variables and returns.</doc>
|
|
2959
2955
|
</parameters>
|
2960
2956
|
</callback>
|
2961
2957
|
</field>
|
2962
|
-
<field name="find_shaper"
|
2963
|
-
<callback name="find_shaper"
|
2964
|
-
<return-value>
|
2958
|
+
<field name="find_shaper">
|
2959
|
+
<callback name="find_shaper">
|
2960
|
+
<return-value transfer-ownership="none">
|
2965
2961
|
<doc xml:space="preserve">the best matching shaper.</doc>
|
2966
2962
|
<type name="EngineShape" c:type="PangoEngineShape*"/>
|
2967
2963
|
</return-value>
|
@@ -7346,8 +7342,8 @@ is simply a convenience function around pango_layout_get_extents().</doc>
|
|
7346
7342
|
</instance-parameter>
|
7347
7343
|
<parameter name="width"
|
7348
7344
|
direction="out"
|
7349
|
-
caller-allocates="
|
7350
|
-
transfer-ownership="
|
7345
|
+
caller-allocates="0"
|
7346
|
+
transfer-ownership="full"
|
7351
7347
|
optional="1"
|
7352
7348
|
allow-none="1">
|
7353
7349
|
<doc xml:space="preserve">location to store the logical width, or %NULL</doc>
|
@@ -7355,8 +7351,8 @@ is simply a convenience function around pango_layout_get_extents().</doc>
|
|
7355
7351
|
</parameter>
|
7356
7352
|
<parameter name="height"
|
7357
7353
|
direction="out"
|
7358
|
-
caller-allocates="
|
7359
|
-
transfer-ownership="
|
7354
|
+
caller-allocates="0"
|
7355
|
+
transfer-ownership="full"
|
7360
7356
|
optional="1"
|
7361
7357
|
allow-none="1">
|
7362
7358
|
<doc xml:space="preserve">location to store the logical height, or %NULL</doc>
|
@@ -8565,7 +8561,7 @@ code specific to each rendering system.</doc>
|
|
8565
8561
|
<doc xml:space="preserve">list of runs in the
|
8566
8562
|
line, from left to right</doc>
|
8567
8563
|
<type name="GLib.SList" c:type="GSList*">
|
8568
|
-
<type name="
|
8564
|
+
<type name="LayoutRun"/>
|
8569
8565
|
</type>
|
8570
8566
|
</field>
|
8571
8567
|
<field name="is_paragraph_start" writable="1" bits="1">
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Annotation Glossary: Graphene Reference Manual</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
|
+
<link rel="home" href="index.html" title="Graphene Reference Manual">
|
8
|
+
<link rel="up" href="index.html" title="Graphene Reference Manual">
|
9
|
+
<link rel="prev" href="ix06.html" title="Index of new symbols in 1.6">
|
10
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
11
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
12
|
+
</head>
|
13
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
14
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
15
|
+
<td width="100%" align="left" class="shortcuts"><span id="nav_glossary"><a class="shortcut" href="#glsA">A</a>
|
16
|
+
<span class="dim">|</span>
|
17
|
+
<a class="shortcut" href="#glsC">C</a>
|
18
|
+
<span class="dim">|</span>
|
19
|
+
<a class="shortcut" href="#glsN">N</a>
|
20
|
+
<span class="dim">|</span>
|
21
|
+
<a class="shortcut" href="#glsO">O</a>
|
22
|
+
<span class="dim">|</span>
|
23
|
+
<a class="shortcut" href="#glsT">T</a></span></td>
|
24
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
25
|
+
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
26
|
+
<td><a accesskey="p" href="ix06.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
27
|
+
<td><img src="right-insensitive.png" width="16" height="16" border="0"></td>
|
28
|
+
</tr></table>
|
29
|
+
<div class="glossary">
|
30
|
+
<div class="titlepage"><div><div><h1 class="title">
|
31
|
+
<a name="annotation-glossary"></a>Annotation Glossary</h1></div></div></div>
|
32
|
+
<a name="glsA"></a><h3 class="title">A</h3>
|
33
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-array"></a>array</span></dt>
|
34
|
+
<dd class="glossdef"><p>Parameter points to an array of items.</p></dd>
|
35
|
+
<a name="glsC"></a><h3 class="title">C</h3>
|
36
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-constructor"></a>constructor</span></dt>
|
37
|
+
<dd class="glossdef"><p>This symbol is a constructor, not a static method.</p></dd>
|
38
|
+
<a name="glsN"></a><h3 class="title">N</h3>
|
39
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-nullable"></a>nullable</span></dt>
|
40
|
+
<dd class="glossdef"><p>NULL may be passed as the value in, out, in-out; or as a return value.</p></dd>
|
41
|
+
<a name="glsO"></a><h3 class="title">O</h3>
|
42
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-optional"></a>optional</span></dt>
|
43
|
+
<dd class="glossdef"><p>NULL may be passed instead of a pointer to a location.</p></dd>
|
44
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-out"></a>out</span></dt>
|
45
|
+
<dd class="glossdef"><p>Parameter for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
|
46
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-out%20caller-allocates"></a>out caller-allocates</span></dt>
|
47
|
+
<dd class="glossdef"><p>Out parameter, where caller must allocate storage.</p></dd>
|
48
|
+
<a name="glsT"></a><h3 class="title">T</h3>
|
49
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20full"></a>transfer full</span></dt>
|
50
|
+
<dd class="glossdef"><p>Free data after the code is done.</p></dd>
|
51
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt>
|
52
|
+
<dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
|
53
|
+
</div>
|
54
|
+
<div class="footer">
|
55
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
56
|
+
</body>
|
57
|
+
</html>
|
@@ -0,0 +1,1985 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>API Index: Graphene Reference Manual</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
|
+
<link rel="home" href="index.html" title="Graphene Reference Manual">
|
8
|
+
<link rel="up" href="index.html" title="Graphene Reference Manual">
|
9
|
+
<link rel="prev" href="object-tree.html" title="Object Hierarchy">
|
10
|
+
<link rel="next" href="deprecated-api-index.html" title="Index of deprecated API">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxB">B</a>
|
17
|
+
<span class="dim">|</span>
|
18
|
+
<a class="shortcut" href="#idxE">E</a>
|
19
|
+
<span class="dim">|</span>
|
20
|
+
<a class="shortcut" href="#idxF">F</a>
|
21
|
+
<span class="dim">|</span>
|
22
|
+
<a class="shortcut" href="#idxM">M</a>
|
23
|
+
<span class="dim">|</span>
|
24
|
+
<a class="shortcut" href="#idxP">P</a>
|
25
|
+
<span class="dim">|</span>
|
26
|
+
<a class="shortcut" href="#idxQ">Q</a>
|
27
|
+
<span class="dim">|</span>
|
28
|
+
<a class="shortcut" href="#idxR">R</a>
|
29
|
+
<span class="dim">|</span>
|
30
|
+
<a class="shortcut" href="#idxS">S</a>
|
31
|
+
<span class="dim">|</span>
|
32
|
+
<a class="shortcut" href="#idxT">T</a>
|
33
|
+
<span class="dim">|</span>
|
34
|
+
<a class="shortcut" href="#idxV">V</a></span></td>
|
35
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
36
|
+
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
37
|
+
<td><a accesskey="p" href="object-tree.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
38
|
+
<td><a accesskey="n" href="deprecated-api-index.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
39
|
+
</tr></table>
|
40
|
+
<div class="index">
|
41
|
+
<div class="titlepage"><div><div><h1 class="title">
|
42
|
+
<a name="api-index"></a>API Index</h1></div></div></div>
|
43
|
+
<a name="idx"></a><a name="idxB"></a><h3 class="title">B</h3>
|
44
|
+
<dt>
|
45
|
+
<a class="link" href="graphene-Box.html#graphene-box-alloc" title="graphene_box_alloc ()">graphene_box_alloc</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
46
|
+
</dt>
|
47
|
+
<dd></dd>
|
48
|
+
<dt>
|
49
|
+
<a class="link" href="graphene-Box.html#graphene-box-contains-box" title="graphene_box_contains_box ()">graphene_box_contains_box</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
50
|
+
</dt>
|
51
|
+
<dd></dd>
|
52
|
+
<dt>
|
53
|
+
<a class="link" href="graphene-Box.html#graphene-box-contains-point" title="graphene_box_contains_point ()">graphene_box_contains_point</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
54
|
+
</dt>
|
55
|
+
<dd></dd>
|
56
|
+
<dt>
|
57
|
+
<a class="link" href="graphene-Box.html#graphene-box-empty" title="graphene_box_empty ()">graphene_box_empty</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
58
|
+
</dt>
|
59
|
+
<dd></dd>
|
60
|
+
<dt>
|
61
|
+
<a class="link" href="graphene-Box.html#graphene-box-equal" title="graphene_box_equal ()">graphene_box_equal</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
62
|
+
</dt>
|
63
|
+
<dd></dd>
|
64
|
+
<dt>
|
65
|
+
<a class="link" href="graphene-Box.html#graphene-box-expand" title="graphene_box_expand ()">graphene_box_expand</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
66
|
+
</dt>
|
67
|
+
<dd></dd>
|
68
|
+
<dt>
|
69
|
+
<a class="link" href="graphene-Box.html#graphene-box-expand-scalar" title="graphene_box_expand_scalar ()">graphene_box_expand_scalar</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
70
|
+
</dt>
|
71
|
+
<dd></dd>
|
72
|
+
<dt>
|
73
|
+
<a class="link" href="graphene-Box.html#graphene-box-expand-vec3" title="graphene_box_expand_vec3 ()">graphene_box_expand_vec3</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
74
|
+
</dt>
|
75
|
+
<dd></dd>
|
76
|
+
<dt>
|
77
|
+
<a class="link" href="graphene-Box.html#graphene-box-free" title="graphene_box_free ()">graphene_box_free</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
78
|
+
</dt>
|
79
|
+
<dd></dd>
|
80
|
+
<dt>
|
81
|
+
<a class="link" href="graphene-Box.html#graphene-box-get-bounding-sphere" title="graphene_box_get_bounding_sphere ()">graphene_box_get_bounding_sphere</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
82
|
+
</dt>
|
83
|
+
<dd></dd>
|
84
|
+
<dt>
|
85
|
+
<a class="link" href="graphene-Box.html#graphene-box-get-center" title="graphene_box_get_center ()">graphene_box_get_center</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
86
|
+
</dt>
|
87
|
+
<dd></dd>
|
88
|
+
<dt>
|
89
|
+
<a class="link" href="graphene-Box.html#graphene-box-get-depth" title="graphene_box_get_depth ()">graphene_box_get_depth</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
90
|
+
</dt>
|
91
|
+
<dd></dd>
|
92
|
+
<dt>
|
93
|
+
<a class="link" href="graphene-Box.html#graphene-box-get-height" title="graphene_box_get_height ()">graphene_box_get_height</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
94
|
+
</dt>
|
95
|
+
<dd></dd>
|
96
|
+
<dt>
|
97
|
+
<a class="link" href="graphene-Box.html#graphene-box-get-max" title="graphene_box_get_max ()">graphene_box_get_max</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
98
|
+
</dt>
|
99
|
+
<dd></dd>
|
100
|
+
<dt>
|
101
|
+
<a class="link" href="graphene-Box.html#graphene-box-get-min" title="graphene_box_get_min ()">graphene_box_get_min</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
102
|
+
</dt>
|
103
|
+
<dd></dd>
|
104
|
+
<dt>
|
105
|
+
<a class="link" href="graphene-Box.html#graphene-box-get-size" title="graphene_box_get_size ()">graphene_box_get_size</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
106
|
+
</dt>
|
107
|
+
<dd></dd>
|
108
|
+
<dt>
|
109
|
+
<a class="link" href="graphene-Box.html#graphene-box-get-vertices" title="graphene_box_get_vertices ()">graphene_box_get_vertices</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
110
|
+
</dt>
|
111
|
+
<dd></dd>
|
112
|
+
<dt>
|
113
|
+
<a class="link" href="graphene-Box.html#graphene-box-get-width" title="graphene_box_get_width ()">graphene_box_get_width</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
114
|
+
</dt>
|
115
|
+
<dd></dd>
|
116
|
+
<dt>
|
117
|
+
<a class="link" href="graphene-Box.html#graphene-box-infinite" title="graphene_box_infinite ()">graphene_box_infinite</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
118
|
+
</dt>
|
119
|
+
<dd></dd>
|
120
|
+
<dt>
|
121
|
+
<a class="link" href="graphene-Box.html#graphene-box-init" title="graphene_box_init ()">graphene_box_init</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
122
|
+
</dt>
|
123
|
+
<dd></dd>
|
124
|
+
<dt>
|
125
|
+
<a class="link" href="graphene-Box.html#graphene-box-init-from-box" title="graphene_box_init_from_box ()">graphene_box_init_from_box</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
126
|
+
</dt>
|
127
|
+
<dd></dd>
|
128
|
+
<dt>
|
129
|
+
<a class="link" href="graphene-Box.html#graphene-box-init-from-points" title="graphene_box_init_from_points ()">graphene_box_init_from_points</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
130
|
+
</dt>
|
131
|
+
<dd></dd>
|
132
|
+
<dt>
|
133
|
+
<a class="link" href="graphene-Box.html#graphene-box-init-from-vec3" title="graphene_box_init_from_vec3 ()">graphene_box_init_from_vec3</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
134
|
+
</dt>
|
135
|
+
<dd></dd>
|
136
|
+
<dt>
|
137
|
+
<a class="link" href="graphene-Box.html#graphene-box-init-from-vectors" title="graphene_box_init_from_vectors ()">graphene_box_init_from_vectors</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
138
|
+
</dt>
|
139
|
+
<dd></dd>
|
140
|
+
<dt>
|
141
|
+
<a class="link" href="graphene-Box.html#graphene-box-intersection" title="graphene_box_intersection ()">graphene_box_intersection</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
142
|
+
</dt>
|
143
|
+
<dd></dd>
|
144
|
+
<dt>
|
145
|
+
<a class="link" href="graphene-Box.html#graphene-box-minus-one" title="graphene_box_minus_one ()">graphene_box_minus_one</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
146
|
+
</dt>
|
147
|
+
<dd></dd>
|
148
|
+
<dt>
|
149
|
+
<a class="link" href="graphene-Box.html#graphene-box-one" title="graphene_box_one ()">graphene_box_one</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
150
|
+
</dt>
|
151
|
+
<dd></dd>
|
152
|
+
<dt>
|
153
|
+
<a class="link" href="graphene-Box.html#graphene-box-one-minus-one" title="graphene_box_one_minus_one ()">graphene_box_one_minus_one</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
154
|
+
</dt>
|
155
|
+
<dd></dd>
|
156
|
+
<dt>
|
157
|
+
<a class="link" href="graphene-Box.html#graphene-box-t" title="graphene_box_t">graphene_box_t</a>, struct in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
158
|
+
</dt>
|
159
|
+
<dd></dd>
|
160
|
+
<dt>
|
161
|
+
<a class="link" href="graphene-Box.html#graphene-box-union" title="graphene_box_union ()">graphene_box_union</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
162
|
+
</dt>
|
163
|
+
<dd></dd>
|
164
|
+
<dt>
|
165
|
+
<a class="link" href="graphene-Box.html#graphene-box-zero" title="graphene_box_zero ()">graphene_box_zero</a>, function in <a class="link" href="graphene-Box.html" title="Box">Box</a>
|
166
|
+
</dt>
|
167
|
+
<dd></dd>
|
168
|
+
<a name="idxE"></a><h3 class="title">E</h3>
|
169
|
+
<dt>
|
170
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-alloc" title="graphene_euler_alloc ()">graphene_euler_alloc</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
171
|
+
</dt>
|
172
|
+
<dd></dd>
|
173
|
+
<dt>
|
174
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-equal" title="graphene_euler_equal ()">graphene_euler_equal</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
175
|
+
</dt>
|
176
|
+
<dd></dd>
|
177
|
+
<dt>
|
178
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-free" title="graphene_euler_free ()">graphene_euler_free</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
179
|
+
</dt>
|
180
|
+
<dd></dd>
|
181
|
+
<dt>
|
182
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-get-order" title="graphene_euler_get_order ()">graphene_euler_get_order</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
183
|
+
</dt>
|
184
|
+
<dd></dd>
|
185
|
+
<dt>
|
186
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-get-x" title="graphene_euler_get_x ()">graphene_euler_get_x</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
187
|
+
</dt>
|
188
|
+
<dd></dd>
|
189
|
+
<dt>
|
190
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-get-y" title="graphene_euler_get_y ()">graphene_euler_get_y</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
191
|
+
</dt>
|
192
|
+
<dd></dd>
|
193
|
+
<dt>
|
194
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-get-z" title="graphene_euler_get_z ()">graphene_euler_get_z</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
195
|
+
</dt>
|
196
|
+
<dd></dd>
|
197
|
+
<dt>
|
198
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-init" title="graphene_euler_init ()">graphene_euler_init</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
199
|
+
</dt>
|
200
|
+
<dd></dd>
|
201
|
+
<dt>
|
202
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-init-from-euler" title="graphene_euler_init_from_euler ()">graphene_euler_init_from_euler</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
203
|
+
</dt>
|
204
|
+
<dd></dd>
|
205
|
+
<dt>
|
206
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-init-from-matrix" title="graphene_euler_init_from_matrix ()">graphene_euler_init_from_matrix</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
207
|
+
</dt>
|
208
|
+
<dd></dd>
|
209
|
+
<dt>
|
210
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-init-from-quaternion" title="graphene_euler_init_from_quaternion ()">graphene_euler_init_from_quaternion</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
211
|
+
</dt>
|
212
|
+
<dd></dd>
|
213
|
+
<dt>
|
214
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-init-from-vec3" title="graphene_euler_init_from_vec3 ()">graphene_euler_init_from_vec3</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
215
|
+
</dt>
|
216
|
+
<dd></dd>
|
217
|
+
<dt>
|
218
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-init-with-order" title="graphene_euler_init_with_order ()">graphene_euler_init_with_order</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
219
|
+
</dt>
|
220
|
+
<dd></dd>
|
221
|
+
<dt>
|
222
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-order-t" title="enum graphene_euler_order_t">graphene_euler_order_t</a>, enum in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
223
|
+
</dt>
|
224
|
+
<dd></dd>
|
225
|
+
<dt>
|
226
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-reorder" title="graphene_euler_reorder ()">graphene_euler_reorder</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
227
|
+
</dt>
|
228
|
+
<dd></dd>
|
229
|
+
<dt>
|
230
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-t" title="graphene_euler_t">graphene_euler_t</a>, struct in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
231
|
+
</dt>
|
232
|
+
<dd></dd>
|
233
|
+
<dt>
|
234
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-to-matrix" title="graphene_euler_to_matrix ()">graphene_euler_to_matrix</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
235
|
+
</dt>
|
236
|
+
<dd></dd>
|
237
|
+
<dt>
|
238
|
+
<a class="link" href="graphene-Euler.html#graphene-euler-to-vec3" title="graphene_euler_to_vec3 ()">graphene_euler_to_vec3</a>, function in <a class="link" href="graphene-Euler.html" title="Euler">Euler</a>
|
239
|
+
</dt>
|
240
|
+
<dd></dd>
|
241
|
+
<a name="idxF"></a><h3 class="title">F</h3>
|
242
|
+
<dt>
|
243
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-alloc" title="graphene_frustum_alloc ()">graphene_frustum_alloc</a>, function in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
244
|
+
</dt>
|
245
|
+
<dd></dd>
|
246
|
+
<dt>
|
247
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-contains-point" title="graphene_frustum_contains_point ()">graphene_frustum_contains_point</a>, function in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
248
|
+
</dt>
|
249
|
+
<dd></dd>
|
250
|
+
<dt>
|
251
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-equal" title="graphene_frustum_equal ()">graphene_frustum_equal</a>, function in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
252
|
+
</dt>
|
253
|
+
<dd></dd>
|
254
|
+
<dt>
|
255
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-free" title="graphene_frustum_free ()">graphene_frustum_free</a>, function in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
256
|
+
</dt>
|
257
|
+
<dd></dd>
|
258
|
+
<dt>
|
259
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-get-planes" title="graphene_frustum_get_planes ()">graphene_frustum_get_planes</a>, function in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
260
|
+
</dt>
|
261
|
+
<dd></dd>
|
262
|
+
<dt>
|
263
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-init" title="graphene_frustum_init ()">graphene_frustum_init</a>, function in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
264
|
+
</dt>
|
265
|
+
<dd></dd>
|
266
|
+
<dt>
|
267
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-init-from-frustum" title="graphene_frustum_init_from_frustum ()">graphene_frustum_init_from_frustum</a>, function in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
268
|
+
</dt>
|
269
|
+
<dd></dd>
|
270
|
+
<dt>
|
271
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-init-from-matrix" title="graphene_frustum_init_from_matrix ()">graphene_frustum_init_from_matrix</a>, function in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
272
|
+
</dt>
|
273
|
+
<dd></dd>
|
274
|
+
<dt>
|
275
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-intersects-box" title="graphene_frustum_intersects_box ()">graphene_frustum_intersects_box</a>, function in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
276
|
+
</dt>
|
277
|
+
<dd></dd>
|
278
|
+
<dt>
|
279
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-intersects-sphere" title="graphene_frustum_intersects_sphere ()">graphene_frustum_intersects_sphere</a>, function in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
280
|
+
</dt>
|
281
|
+
<dd></dd>
|
282
|
+
<dt>
|
283
|
+
<a class="link" href="graphene-Frustum.html#graphene-frustum-t" title="graphene_frustum_t">graphene_frustum_t</a>, struct in <a class="link" href="graphene-Frustum.html" title="Frustum">Frustum</a>
|
284
|
+
</dt>
|
285
|
+
<dd></dd>
|
286
|
+
<a name="idxM"></a><h3 class="title">M</h3>
|
287
|
+
<dt>
|
288
|
+
<a class="link" href="graphene-Versioning-information.html#GRAPHENE-MAJOR-VERSION:CAPS" title="GRAPHENE_MAJOR_VERSION">GRAPHENE_MAJOR_VERSION</a>, macro in <a class="link" href="graphene-Versioning-information.html" title="Versioning information">Versioning information</a>
|
289
|
+
</dt>
|
290
|
+
<dd></dd>
|
291
|
+
<dt>
|
292
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-alloc" title="graphene_matrix_alloc ()">graphene_matrix_alloc</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
293
|
+
</dt>
|
294
|
+
<dd></dd>
|
295
|
+
<dt>
|
296
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-determinant" title="graphene_matrix_determinant ()">graphene_matrix_determinant</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
297
|
+
</dt>
|
298
|
+
<dd></dd>
|
299
|
+
<dt>
|
300
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-free" title="graphene_matrix_free ()">graphene_matrix_free</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
301
|
+
</dt>
|
302
|
+
<dd></dd>
|
303
|
+
<dt>
|
304
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-get-row" title="graphene_matrix_get_row ()">graphene_matrix_get_row</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
305
|
+
</dt>
|
306
|
+
<dd></dd>
|
307
|
+
<dt>
|
308
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-get-value" title="graphene_matrix_get_value ()">graphene_matrix_get_value</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
309
|
+
</dt>
|
310
|
+
<dd></dd>
|
311
|
+
<dt>
|
312
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-get-x-scale" title="graphene_matrix_get_x_scale ()">graphene_matrix_get_x_scale</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
313
|
+
</dt>
|
314
|
+
<dd></dd>
|
315
|
+
<dt>
|
316
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-get-y-scale" title="graphene_matrix_get_y_scale ()">graphene_matrix_get_y_scale</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
317
|
+
</dt>
|
318
|
+
<dd></dd>
|
319
|
+
<dt>
|
320
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-get-z-scale" title="graphene_matrix_get_z_scale ()">graphene_matrix_get_z_scale</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
321
|
+
</dt>
|
322
|
+
<dd></dd>
|
323
|
+
<dt>
|
324
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-from-2d" title="graphene_matrix_init_from_2d ()">graphene_matrix_init_from_2d</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
325
|
+
</dt>
|
326
|
+
<dd></dd>
|
327
|
+
<dt>
|
328
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-from-float" title="graphene_matrix_init_from_float ()">graphene_matrix_init_from_float</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
329
|
+
</dt>
|
330
|
+
<dd></dd>
|
331
|
+
<dt>
|
332
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-from-matrix" title="graphene_matrix_init_from_matrix ()">graphene_matrix_init_from_matrix</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
333
|
+
</dt>
|
334
|
+
<dd></dd>
|
335
|
+
<dt>
|
336
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-from-vec4" title="graphene_matrix_init_from_vec4 ()">graphene_matrix_init_from_vec4</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
337
|
+
</dt>
|
338
|
+
<dd></dd>
|
339
|
+
<dt>
|
340
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-frustum" title="graphene_matrix_init_frustum ()">graphene_matrix_init_frustum</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
341
|
+
</dt>
|
342
|
+
<dd></dd>
|
343
|
+
<dt>
|
344
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-identity" title="graphene_matrix_init_identity ()">graphene_matrix_init_identity</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
345
|
+
</dt>
|
346
|
+
<dd></dd>
|
347
|
+
<dt>
|
348
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-look-at" title="graphene_matrix_init_look_at ()">graphene_matrix_init_look_at</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
349
|
+
</dt>
|
350
|
+
<dd></dd>
|
351
|
+
<dt>
|
352
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-ortho" title="graphene_matrix_init_ortho ()">graphene_matrix_init_ortho</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
353
|
+
</dt>
|
354
|
+
<dd></dd>
|
355
|
+
<dt>
|
356
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-perspective" title="graphene_matrix_init_perspective ()">graphene_matrix_init_perspective</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
357
|
+
</dt>
|
358
|
+
<dd></dd>
|
359
|
+
<dt>
|
360
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-rotate" title="graphene_matrix_init_rotate ()">graphene_matrix_init_rotate</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
361
|
+
</dt>
|
362
|
+
<dd></dd>
|
363
|
+
<dt>
|
364
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-scale" title="graphene_matrix_init_scale ()">graphene_matrix_init_scale</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
365
|
+
</dt>
|
366
|
+
<dd></dd>
|
367
|
+
<dt>
|
368
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-skew" title="graphene_matrix_init_skew ()">graphene_matrix_init_skew</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
369
|
+
</dt>
|
370
|
+
<dd></dd>
|
371
|
+
<dt>
|
372
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-init-translate" title="graphene_matrix_init_translate ()">graphene_matrix_init_translate</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
373
|
+
</dt>
|
374
|
+
<dd></dd>
|
375
|
+
<dt>
|
376
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-interpolate" title="graphene_matrix_interpolate ()">graphene_matrix_interpolate</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
377
|
+
</dt>
|
378
|
+
<dd></dd>
|
379
|
+
<dt>
|
380
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-inverse" title="graphene_matrix_inverse ()">graphene_matrix_inverse</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
381
|
+
</dt>
|
382
|
+
<dd></dd>
|
383
|
+
<dt>
|
384
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-is-2d" title="graphene_matrix_is_2d ()">graphene_matrix_is_2d</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
385
|
+
</dt>
|
386
|
+
<dd></dd>
|
387
|
+
<dt>
|
388
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-is-backface-visible" title="graphene_matrix_is_backface_visible ()">graphene_matrix_is_backface_visible</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
389
|
+
</dt>
|
390
|
+
<dd></dd>
|
391
|
+
<dt>
|
392
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-is-identity" title="graphene_matrix_is_identity ()">graphene_matrix_is_identity</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
393
|
+
</dt>
|
394
|
+
<dd></dd>
|
395
|
+
<dt>
|
396
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-is-singular" title="graphene_matrix_is_singular ()">graphene_matrix_is_singular</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
397
|
+
</dt>
|
398
|
+
<dd></dd>
|
399
|
+
<dt>
|
400
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-multiply" title="graphene_matrix_multiply ()">graphene_matrix_multiply</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
401
|
+
</dt>
|
402
|
+
<dd></dd>
|
403
|
+
<dt>
|
404
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-normalize" title="graphene_matrix_normalize ()">graphene_matrix_normalize</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
405
|
+
</dt>
|
406
|
+
<dd></dd>
|
407
|
+
<dt>
|
408
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-perspective" title="graphene_matrix_perspective ()">graphene_matrix_perspective</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
409
|
+
</dt>
|
410
|
+
<dd></dd>
|
411
|
+
<dt>
|
412
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-print" title="graphene_matrix_print ()">graphene_matrix_print</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
413
|
+
</dt>
|
414
|
+
<dd></dd>
|
415
|
+
<dt>
|
416
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-project-point" title="graphene_matrix_project_point ()">graphene_matrix_project_point</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
417
|
+
</dt>
|
418
|
+
<dd></dd>
|
419
|
+
<dt>
|
420
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-project-rect" title="graphene_matrix_project_rect ()">graphene_matrix_project_rect</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
421
|
+
</dt>
|
422
|
+
<dd></dd>
|
423
|
+
<dt>
|
424
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-project-rect-bounds" title="graphene_matrix_project_rect_bounds ()">graphene_matrix_project_rect_bounds</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
425
|
+
</dt>
|
426
|
+
<dd></dd>
|
427
|
+
<dt>
|
428
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-rotate" title="graphene_matrix_rotate ()">graphene_matrix_rotate</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
429
|
+
</dt>
|
430
|
+
<dd></dd>
|
431
|
+
<dt>
|
432
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-rotate-euler" title="graphene_matrix_rotate_euler ()">graphene_matrix_rotate_euler</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
433
|
+
</dt>
|
434
|
+
<dd></dd>
|
435
|
+
<dt>
|
436
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-rotate-quaternion" title="graphene_matrix_rotate_quaternion ()">graphene_matrix_rotate_quaternion</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
437
|
+
</dt>
|
438
|
+
<dd></dd>
|
439
|
+
<dt>
|
440
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-rotate-x" title="graphene_matrix_rotate_x ()">graphene_matrix_rotate_x</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
441
|
+
</dt>
|
442
|
+
<dd></dd>
|
443
|
+
<dt>
|
444
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-rotate-y" title="graphene_matrix_rotate_y ()">graphene_matrix_rotate_y</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
445
|
+
</dt>
|
446
|
+
<dd></dd>
|
447
|
+
<dt>
|
448
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-rotate-z" title="graphene_matrix_rotate_z ()">graphene_matrix_rotate_z</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
449
|
+
</dt>
|
450
|
+
<dd></dd>
|
451
|
+
<dt>
|
452
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-scale" title="graphene_matrix_scale ()">graphene_matrix_scale</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
453
|
+
</dt>
|
454
|
+
<dd></dd>
|
455
|
+
<dt>
|
456
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-skew-xy" title="graphene_matrix_skew_xy ()">graphene_matrix_skew_xy</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
457
|
+
</dt>
|
458
|
+
<dd></dd>
|
459
|
+
<dt>
|
460
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-skew-xz" title="graphene_matrix_skew_xz ()">graphene_matrix_skew_xz</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
461
|
+
</dt>
|
462
|
+
<dd></dd>
|
463
|
+
<dt>
|
464
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-skew-yz" title="graphene_matrix_skew_yz ()">graphene_matrix_skew_yz</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
465
|
+
</dt>
|
466
|
+
<dd></dd>
|
467
|
+
<dt>
|
468
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-t" title="graphene_matrix_t">graphene_matrix_t</a>, struct in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
469
|
+
</dt>
|
470
|
+
<dd></dd>
|
471
|
+
<dt>
|
472
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-to-2d" title="graphene_matrix_to_2d ()">graphene_matrix_to_2d</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
473
|
+
</dt>
|
474
|
+
<dd></dd>
|
475
|
+
<dt>
|
476
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-to-float" title="graphene_matrix_to_float ()">graphene_matrix_to_float</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
477
|
+
</dt>
|
478
|
+
<dd></dd>
|
479
|
+
<dt>
|
480
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-transform-bounds" title="graphene_matrix_transform_bounds ()">graphene_matrix_transform_bounds</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
481
|
+
</dt>
|
482
|
+
<dd></dd>
|
483
|
+
<dt>
|
484
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-transform-box" title="graphene_matrix_transform_box ()">graphene_matrix_transform_box</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
485
|
+
</dt>
|
486
|
+
<dd></dd>
|
487
|
+
<dt>
|
488
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-transform-point" title="graphene_matrix_transform_point ()">graphene_matrix_transform_point</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
489
|
+
</dt>
|
490
|
+
<dd></dd>
|
491
|
+
<dt>
|
492
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-transform-point3d" title="graphene_matrix_transform_point3d ()">graphene_matrix_transform_point3d</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
493
|
+
</dt>
|
494
|
+
<dd></dd>
|
495
|
+
<dt>
|
496
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-transform-ray" title="graphene_matrix_transform_ray ()">graphene_matrix_transform_ray</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
497
|
+
</dt>
|
498
|
+
<dd></dd>
|
499
|
+
<dt>
|
500
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-transform-rect" title="graphene_matrix_transform_rect ()">graphene_matrix_transform_rect</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
501
|
+
</dt>
|
502
|
+
<dd></dd>
|
503
|
+
<dt>
|
504
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-transform-sphere" title="graphene_matrix_transform_sphere ()">graphene_matrix_transform_sphere</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
505
|
+
</dt>
|
506
|
+
<dd></dd>
|
507
|
+
<dt>
|
508
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-transform-vec3" title="graphene_matrix_transform_vec3 ()">graphene_matrix_transform_vec3</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
509
|
+
</dt>
|
510
|
+
<dd></dd>
|
511
|
+
<dt>
|
512
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-transform-vec4" title="graphene_matrix_transform_vec4 ()">graphene_matrix_transform_vec4</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
513
|
+
</dt>
|
514
|
+
<dd></dd>
|
515
|
+
<dt>
|
516
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-translate" title="graphene_matrix_translate ()">graphene_matrix_translate</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
517
|
+
</dt>
|
518
|
+
<dd></dd>
|
519
|
+
<dt>
|
520
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-transpose" title="graphene_matrix_transpose ()">graphene_matrix_transpose</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
521
|
+
</dt>
|
522
|
+
<dd></dd>
|
523
|
+
<dt>
|
524
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-unproject-point3d" title="graphene_matrix_unproject_point3d ()">graphene_matrix_unproject_point3d</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
525
|
+
</dt>
|
526
|
+
<dd></dd>
|
527
|
+
<dt>
|
528
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-untransform-bounds" title="graphene_matrix_untransform_bounds ()">graphene_matrix_untransform_bounds</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
529
|
+
</dt>
|
530
|
+
<dd></dd>
|
531
|
+
<dt>
|
532
|
+
<a class="link" href="graphene-Matrix.html#graphene-matrix-untransform-point" title="graphene_matrix_untransform_point ()">graphene_matrix_untransform_point</a>, function in <a class="link" href="graphene-Matrix.html" title="Matrix">Matrix</a>
|
533
|
+
</dt>
|
534
|
+
<dd></dd>
|
535
|
+
<dt>
|
536
|
+
<a class="link" href="graphene-Versioning-information.html#GRAPHENE-MICRO-VERSION:CAPS" title="GRAPHENE_MICRO_VERSION">GRAPHENE_MICRO_VERSION</a>, macro in <a class="link" href="graphene-Versioning-information.html" title="Versioning information">Versioning information</a>
|
537
|
+
</dt>
|
538
|
+
<dd></dd>
|
539
|
+
<dt>
|
540
|
+
<a class="link" href="graphene-Versioning-information.html#GRAPHENE-MINOR-VERSION:CAPS" title="GRAPHENE_MINOR_VERSION">GRAPHENE_MINOR_VERSION</a>, macro in <a class="link" href="graphene-Versioning-information.html" title="Versioning information">Versioning information</a>
|
541
|
+
</dt>
|
542
|
+
<dd></dd>
|
543
|
+
<a name="idxP"></a><h3 class="title">P</h3>
|
544
|
+
<dt>
|
545
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-alloc" title="graphene_plane_alloc ()">graphene_plane_alloc</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
546
|
+
</dt>
|
547
|
+
<dd></dd>
|
548
|
+
<dt>
|
549
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-distance" title="graphene_plane_distance ()">graphene_plane_distance</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
550
|
+
</dt>
|
551
|
+
<dd></dd>
|
552
|
+
<dt>
|
553
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-equal" title="graphene_plane_equal ()">graphene_plane_equal</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
554
|
+
</dt>
|
555
|
+
<dd></dd>
|
556
|
+
<dt>
|
557
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-free" title="graphene_plane_free ()">graphene_plane_free</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
558
|
+
</dt>
|
559
|
+
<dd></dd>
|
560
|
+
<dt>
|
561
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-get-constant" title="graphene_plane_get_constant ()">graphene_plane_get_constant</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
562
|
+
</dt>
|
563
|
+
<dd></dd>
|
564
|
+
<dt>
|
565
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-get-normal" title="graphene_plane_get_normal ()">graphene_plane_get_normal</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
566
|
+
</dt>
|
567
|
+
<dd></dd>
|
568
|
+
<dt>
|
569
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-init" title="graphene_plane_init ()">graphene_plane_init</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
570
|
+
</dt>
|
571
|
+
<dd></dd>
|
572
|
+
<dt>
|
573
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-init-from-plane" title="graphene_plane_init_from_plane ()">graphene_plane_init_from_plane</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
574
|
+
</dt>
|
575
|
+
<dd></dd>
|
576
|
+
<dt>
|
577
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-init-from-point" title="graphene_plane_init_from_point ()">graphene_plane_init_from_point</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
578
|
+
</dt>
|
579
|
+
<dd></dd>
|
580
|
+
<dt>
|
581
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-init-from-points" title="graphene_plane_init_from_points ()">graphene_plane_init_from_points</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
582
|
+
</dt>
|
583
|
+
<dd></dd>
|
584
|
+
<dt>
|
585
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-init-from-vec4" title="graphene_plane_init_from_vec4 ()">graphene_plane_init_from_vec4</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
586
|
+
</dt>
|
587
|
+
<dd></dd>
|
588
|
+
<dt>
|
589
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-negate" title="graphene_plane_negate ()">graphene_plane_negate</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
590
|
+
</dt>
|
591
|
+
<dd></dd>
|
592
|
+
<dt>
|
593
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-normalize" title="graphene_plane_normalize ()">graphene_plane_normalize</a>, function in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
594
|
+
</dt>
|
595
|
+
<dd></dd>
|
596
|
+
<dt>
|
597
|
+
<a class="link" href="graphene-Plane.html#graphene-plane-t" title="graphene_plane_t">graphene_plane_t</a>, struct in <a class="link" href="graphene-Plane.html" title="Plane">Plane</a>
|
598
|
+
</dt>
|
599
|
+
<dd></dd>
|
600
|
+
<dt>
|
601
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-alloc" title="graphene_point3d_alloc ()">graphene_point3d_alloc</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
602
|
+
</dt>
|
603
|
+
<dd></dd>
|
604
|
+
<dt>
|
605
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-cross" title="graphene_point3d_cross ()">graphene_point3d_cross</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
606
|
+
</dt>
|
607
|
+
<dd></dd>
|
608
|
+
<dt>
|
609
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-distance" title="graphene_point3d_distance ()">graphene_point3d_distance</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
610
|
+
</dt>
|
611
|
+
<dd></dd>
|
612
|
+
<dt>
|
613
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-dot" title="graphene_point3d_dot ()">graphene_point3d_dot</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
614
|
+
</dt>
|
615
|
+
<dd></dd>
|
616
|
+
<dt>
|
617
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-equal" title="graphene_point3d_equal ()">graphene_point3d_equal</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
618
|
+
</dt>
|
619
|
+
<dd></dd>
|
620
|
+
<dt>
|
621
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-free" title="graphene_point3d_free ()">graphene_point3d_free</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
622
|
+
</dt>
|
623
|
+
<dd></dd>
|
624
|
+
<dt>
|
625
|
+
<a class="link" href="graphene-Point3D.html#GRAPHENE-POINT3D-INIT:CAPS" title="GRAPHENE_POINT3D_INIT()">GRAPHENE_POINT3D_INIT</a>, macro in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
626
|
+
</dt>
|
627
|
+
<dd></dd>
|
628
|
+
<dt>
|
629
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-init" title="graphene_point3d_init ()">graphene_point3d_init</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
630
|
+
</dt>
|
631
|
+
<dd></dd>
|
632
|
+
<dt>
|
633
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-init-from-point" title="graphene_point3d_init_from_point ()">graphene_point3d_init_from_point</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
634
|
+
</dt>
|
635
|
+
<dd></dd>
|
636
|
+
<dt>
|
637
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-init-from-vec3" title="graphene_point3d_init_from_vec3 ()">graphene_point3d_init_from_vec3</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
638
|
+
</dt>
|
639
|
+
<dd></dd>
|
640
|
+
<dt>
|
641
|
+
<a class="link" href="graphene-Point3D.html#GRAPHENE-POINT3D-INIT-ZERO:CAPS" title="GRAPHENE_POINT3D_INIT_ZERO">GRAPHENE_POINT3D_INIT_ZERO</a>, macro in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
642
|
+
</dt>
|
643
|
+
<dd></dd>
|
644
|
+
<dt>
|
645
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-interpolate" title="graphene_point3d_interpolate ()">graphene_point3d_interpolate</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
646
|
+
</dt>
|
647
|
+
<dd></dd>
|
648
|
+
<dt>
|
649
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-length" title="graphene_point3d_length ()">graphene_point3d_length</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
650
|
+
</dt>
|
651
|
+
<dd></dd>
|
652
|
+
<dt>
|
653
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-near" title="graphene_point3d_near ()">graphene_point3d_near</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
654
|
+
</dt>
|
655
|
+
<dd></dd>
|
656
|
+
<dt>
|
657
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-normalize" title="graphene_point3d_normalize ()">graphene_point3d_normalize</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
658
|
+
</dt>
|
659
|
+
<dd></dd>
|
660
|
+
<dt>
|
661
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-normalize-viewport" title="graphene_point3d_normalize_viewport ()">graphene_point3d_normalize_viewport</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
662
|
+
</dt>
|
663
|
+
<dd></dd>
|
664
|
+
<dt>
|
665
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-scale" title="graphene_point3d_scale ()">graphene_point3d_scale</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
666
|
+
</dt>
|
667
|
+
<dd></dd>
|
668
|
+
<dt>
|
669
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-t" title="graphene_point3d_t">graphene_point3d_t</a>, struct in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
670
|
+
</dt>
|
671
|
+
<dd></dd>
|
672
|
+
<dt>
|
673
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-to-vec3" title="graphene_point3d_to_vec3 ()">graphene_point3d_to_vec3</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
674
|
+
</dt>
|
675
|
+
<dd></dd>
|
676
|
+
<dt>
|
677
|
+
<a class="link" href="graphene-Point3D.html#graphene-point3d-zero" title="graphene_point3d_zero ()">graphene_point3d_zero</a>, function in <a class="link" href="graphene-Point3D.html" title="Point3D">Point3D</a>
|
678
|
+
</dt>
|
679
|
+
<dd></dd>
|
680
|
+
<dt>
|
681
|
+
<a class="link" href="graphene-Point.html#graphene-point-alloc" title="graphene_point_alloc ()">graphene_point_alloc</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
682
|
+
</dt>
|
683
|
+
<dd></dd>
|
684
|
+
<dt>
|
685
|
+
<a class="link" href="graphene-Point.html#graphene-point-distance" title="graphene_point_distance ()">graphene_point_distance</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
686
|
+
</dt>
|
687
|
+
<dd></dd>
|
688
|
+
<dt>
|
689
|
+
<a class="link" href="graphene-Point.html#graphene-point-equal" title="graphene_point_equal ()">graphene_point_equal</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
690
|
+
</dt>
|
691
|
+
<dd></dd>
|
692
|
+
<dt>
|
693
|
+
<a class="link" href="graphene-Point.html#graphene-point-free" title="graphene_point_free ()">graphene_point_free</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
694
|
+
</dt>
|
695
|
+
<dd></dd>
|
696
|
+
<dt>
|
697
|
+
<a class="link" href="graphene-Point.html#GRAPHENE-POINT-INIT:CAPS" title="GRAPHENE_POINT_INIT()">GRAPHENE_POINT_INIT</a>, macro in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
698
|
+
</dt>
|
699
|
+
<dd></dd>
|
700
|
+
<dt>
|
701
|
+
<a class="link" href="graphene-Point.html#graphene-point-init" title="graphene_point_init ()">graphene_point_init</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
702
|
+
</dt>
|
703
|
+
<dd></dd>
|
704
|
+
<dt>
|
705
|
+
<a class="link" href="graphene-Point.html#graphene-point-init-from-point" title="graphene_point_init_from_point ()">graphene_point_init_from_point</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
706
|
+
</dt>
|
707
|
+
<dd></dd>
|
708
|
+
<dt>
|
709
|
+
<a class="link" href="graphene-Point.html#graphene-point-init-from-vec2" title="graphene_point_init_from_vec2 ()">graphene_point_init_from_vec2</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
710
|
+
</dt>
|
711
|
+
<dd></dd>
|
712
|
+
<dt>
|
713
|
+
<a class="link" href="graphene-Point.html#GRAPHENE-POINT-INIT-ZERO:CAPS" title="GRAPHENE_POINT_INIT_ZERO">GRAPHENE_POINT_INIT_ZERO</a>, macro in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
714
|
+
</dt>
|
715
|
+
<dd></dd>
|
716
|
+
<dt>
|
717
|
+
<a class="link" href="graphene-Point.html#graphene-point-interpolate" title="graphene_point_interpolate ()">graphene_point_interpolate</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
718
|
+
</dt>
|
719
|
+
<dd></dd>
|
720
|
+
<dt>
|
721
|
+
<a class="link" href="graphene-Point.html#graphene-point-near" title="graphene_point_near ()">graphene_point_near</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
722
|
+
</dt>
|
723
|
+
<dd></dd>
|
724
|
+
<dt>
|
725
|
+
<a class="link" href="graphene-Point.html#graphene-point-t" title="graphene_point_t">graphene_point_t</a>, struct in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
726
|
+
</dt>
|
727
|
+
<dd></dd>
|
728
|
+
<dt>
|
729
|
+
<a class="link" href="graphene-Point.html#graphene-point-to-vec2" title="graphene_point_to_vec2 ()">graphene_point_to_vec2</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
730
|
+
</dt>
|
731
|
+
<dd></dd>
|
732
|
+
<dt>
|
733
|
+
<a class="link" href="graphene-Point.html#graphene-point-zero" title="graphene_point_zero ()">graphene_point_zero</a>, function in <a class="link" href="graphene-Point.html" title="Point">Point</a>
|
734
|
+
</dt>
|
735
|
+
<dd></dd>
|
736
|
+
<a name="idxQ"></a><h3 class="title">Q</h3>
|
737
|
+
<dt>
|
738
|
+
<a class="link" href="graphene-Quad.html#graphene-quad-alloc" title="graphene_quad_alloc ()">graphene_quad_alloc</a>, function in <a class="link" href="graphene-Quad.html" title="Quad">Quad</a>
|
739
|
+
</dt>
|
740
|
+
<dd></dd>
|
741
|
+
<dt>
|
742
|
+
<a class="link" href="graphene-Quad.html#graphene-quad-bounds" title="graphene_quad_bounds ()">graphene_quad_bounds</a>, function in <a class="link" href="graphene-Quad.html" title="Quad">Quad</a>
|
743
|
+
</dt>
|
744
|
+
<dd></dd>
|
745
|
+
<dt>
|
746
|
+
<a class="link" href="graphene-Quad.html#graphene-quad-contains" title="graphene_quad_contains ()">graphene_quad_contains</a>, function in <a class="link" href="graphene-Quad.html" title="Quad">Quad</a>
|
747
|
+
</dt>
|
748
|
+
<dd></dd>
|
749
|
+
<dt>
|
750
|
+
<a class="link" href="graphene-Quad.html#graphene-quad-free" title="graphene_quad_free ()">graphene_quad_free</a>, function in <a class="link" href="graphene-Quad.html" title="Quad">Quad</a>
|
751
|
+
</dt>
|
752
|
+
<dd></dd>
|
753
|
+
<dt>
|
754
|
+
<a class="link" href="graphene-Quad.html#graphene-quad-get-point" title="graphene_quad_get_point ()">graphene_quad_get_point</a>, function in <a class="link" href="graphene-Quad.html" title="Quad">Quad</a>
|
755
|
+
</dt>
|
756
|
+
<dd></dd>
|
757
|
+
<dt>
|
758
|
+
<a class="link" href="graphene-Quad.html#graphene-quad-init" title="graphene_quad_init ()">graphene_quad_init</a>, function in <a class="link" href="graphene-Quad.html" title="Quad">Quad</a>
|
759
|
+
</dt>
|
760
|
+
<dd></dd>
|
761
|
+
<dt>
|
762
|
+
<a class="link" href="graphene-Quad.html#graphene-quad-init-from-points" title="graphene_quad_init_from_points ()">graphene_quad_init_from_points</a>, function in <a class="link" href="graphene-Quad.html" title="Quad">Quad</a>
|
763
|
+
</dt>
|
764
|
+
<dd></dd>
|
765
|
+
<dt>
|
766
|
+
<a class="link" href="graphene-Quad.html#graphene-quad-init-from-rect" title="graphene_quad_init_from_rect ()">graphene_quad_init_from_rect</a>, function in <a class="link" href="graphene-Quad.html" title="Quad">Quad</a>
|
767
|
+
</dt>
|
768
|
+
<dd></dd>
|
769
|
+
<dt>
|
770
|
+
<a class="link" href="graphene-Quad.html#graphene-quad-t" title="graphene_quad_t">graphene_quad_t</a>, struct in <a class="link" href="graphene-Quad.html" title="Quad">Quad</a>
|
771
|
+
</dt>
|
772
|
+
<dd></dd>
|
773
|
+
<dt>
|
774
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-alloc" title="graphene_quaternion_alloc ()">graphene_quaternion_alloc</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
775
|
+
</dt>
|
776
|
+
<dd></dd>
|
777
|
+
<dt>
|
778
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-dot" title="graphene_quaternion_dot ()">graphene_quaternion_dot</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
779
|
+
</dt>
|
780
|
+
<dd></dd>
|
781
|
+
<dt>
|
782
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-equal" title="graphene_quaternion_equal ()">graphene_quaternion_equal</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
783
|
+
</dt>
|
784
|
+
<dd></dd>
|
785
|
+
<dt>
|
786
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-free" title="graphene_quaternion_free ()">graphene_quaternion_free</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
787
|
+
</dt>
|
788
|
+
<dd></dd>
|
789
|
+
<dt>
|
790
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-init" title="graphene_quaternion_init ()">graphene_quaternion_init</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
791
|
+
</dt>
|
792
|
+
<dd></dd>
|
793
|
+
<dt>
|
794
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-init-from-angles" title="graphene_quaternion_init_from_angles ()">graphene_quaternion_init_from_angles</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
795
|
+
</dt>
|
796
|
+
<dd></dd>
|
797
|
+
<dt>
|
798
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-init-from-angle-vec3" title="graphene_quaternion_init_from_angle_vec3 ()">graphene_quaternion_init_from_angle_vec3</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
799
|
+
</dt>
|
800
|
+
<dd></dd>
|
801
|
+
<dt>
|
802
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-init-from-euler" title="graphene_quaternion_init_from_euler ()">graphene_quaternion_init_from_euler</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
803
|
+
</dt>
|
804
|
+
<dd></dd>
|
805
|
+
<dt>
|
806
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-init-from-matrix" title="graphene_quaternion_init_from_matrix ()">graphene_quaternion_init_from_matrix</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
807
|
+
</dt>
|
808
|
+
<dd></dd>
|
809
|
+
<dt>
|
810
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-init-from-quaternion" title="graphene_quaternion_init_from_quaternion ()">graphene_quaternion_init_from_quaternion</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
811
|
+
</dt>
|
812
|
+
<dd></dd>
|
813
|
+
<dt>
|
814
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-init-from-radians" title="graphene_quaternion_init_from_radians ()">graphene_quaternion_init_from_radians</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
815
|
+
</dt>
|
816
|
+
<dd></dd>
|
817
|
+
<dt>
|
818
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-init-from-vec4" title="graphene_quaternion_init_from_vec4 ()">graphene_quaternion_init_from_vec4</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
819
|
+
</dt>
|
820
|
+
<dd></dd>
|
821
|
+
<dt>
|
822
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-init-identity" title="graphene_quaternion_init_identity ()">graphene_quaternion_init_identity</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
823
|
+
</dt>
|
824
|
+
<dd></dd>
|
825
|
+
<dt>
|
826
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-invert" title="graphene_quaternion_invert ()">graphene_quaternion_invert</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
827
|
+
</dt>
|
828
|
+
<dd></dd>
|
829
|
+
<dt>
|
830
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-normalize" title="graphene_quaternion_normalize ()">graphene_quaternion_normalize</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
831
|
+
</dt>
|
832
|
+
<dd></dd>
|
833
|
+
<dt>
|
834
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-slerp" title="graphene_quaternion_slerp ()">graphene_quaternion_slerp</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
835
|
+
</dt>
|
836
|
+
<dd></dd>
|
837
|
+
<dt>
|
838
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-t" title="graphene_quaternion_t">graphene_quaternion_t</a>, struct in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
839
|
+
</dt>
|
840
|
+
<dd></dd>
|
841
|
+
<dt>
|
842
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-to-angles" title="graphene_quaternion_to_angles ()">graphene_quaternion_to_angles</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
843
|
+
</dt>
|
844
|
+
<dd></dd>
|
845
|
+
<dt>
|
846
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-to-angle-vec3" title="graphene_quaternion_to_angle_vec3 ()">graphene_quaternion_to_angle_vec3</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
847
|
+
</dt>
|
848
|
+
<dd></dd>
|
849
|
+
<dt>
|
850
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-to-matrix" title="graphene_quaternion_to_matrix ()">graphene_quaternion_to_matrix</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
851
|
+
</dt>
|
852
|
+
<dd></dd>
|
853
|
+
<dt>
|
854
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-to-radians" title="graphene_quaternion_to_radians ()">graphene_quaternion_to_radians</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
855
|
+
</dt>
|
856
|
+
<dd></dd>
|
857
|
+
<dt>
|
858
|
+
<a class="link" href="graphene-Quaternion.html#graphene-quaternion-to-vec4" title="graphene_quaternion_to_vec4 ()">graphene_quaternion_to_vec4</a>, function in <a class="link" href="graphene-Quaternion.html" title="Quaternion">Quaternion</a>
|
859
|
+
</dt>
|
860
|
+
<dd></dd>
|
861
|
+
<a name="idxR"></a><h3 class="title">R</h3>
|
862
|
+
<dt>
|
863
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-alloc" title="graphene_ray_alloc ()">graphene_ray_alloc</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
864
|
+
</dt>
|
865
|
+
<dd></dd>
|
866
|
+
<dt>
|
867
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-equal" title="graphene_ray_equal ()">graphene_ray_equal</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
868
|
+
</dt>
|
869
|
+
<dd></dd>
|
870
|
+
<dt>
|
871
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-free" title="graphene_ray_free ()">graphene_ray_free</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
872
|
+
</dt>
|
873
|
+
<dd></dd>
|
874
|
+
<dt>
|
875
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-closest-point-to-point" title="graphene_ray_get_closest_point_to_point ()">graphene_ray_get_closest_point_to_point</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
876
|
+
</dt>
|
877
|
+
<dd></dd>
|
878
|
+
<dt>
|
879
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-direction" title="graphene_ray_get_direction ()">graphene_ray_get_direction</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
880
|
+
</dt>
|
881
|
+
<dd></dd>
|
882
|
+
<dt>
|
883
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-distance-to-plane" title="graphene_ray_get_distance_to_plane ()">graphene_ray_get_distance_to_plane</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
884
|
+
</dt>
|
885
|
+
<dd></dd>
|
886
|
+
<dt>
|
887
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-distance-to-point" title="graphene_ray_get_distance_to_point ()">graphene_ray_get_distance_to_point</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
888
|
+
</dt>
|
889
|
+
<dd></dd>
|
890
|
+
<dt>
|
891
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-origin" title="graphene_ray_get_origin ()">graphene_ray_get_origin</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
892
|
+
</dt>
|
893
|
+
<dd></dd>
|
894
|
+
<dt>
|
895
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-get-position-at" title="graphene_ray_get_position_at ()">graphene_ray_get_position_at</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
896
|
+
</dt>
|
897
|
+
<dd></dd>
|
898
|
+
<dt>
|
899
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-init" title="graphene_ray_init ()">graphene_ray_init</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
900
|
+
</dt>
|
901
|
+
<dd></dd>
|
902
|
+
<dt>
|
903
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-init-from-ray" title="graphene_ray_init_from_ray ()">graphene_ray_init_from_ray</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
904
|
+
</dt>
|
905
|
+
<dd></dd>
|
906
|
+
<dt>
|
907
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-init-from-vec3" title="graphene_ray_init_from_vec3 ()">graphene_ray_init_from_vec3</a>, function in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
908
|
+
</dt>
|
909
|
+
<dd></dd>
|
910
|
+
<dt>
|
911
|
+
<a class="link" href="graphene-Ray.html#graphene-ray-t" title="graphene_ray_t">graphene_ray_t</a>, struct in <a class="link" href="graphene-Ray.html" title="Ray">Ray</a>
|
912
|
+
</dt>
|
913
|
+
<dd></dd>
|
914
|
+
<dt>
|
915
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-alloc" title="graphene_rect_alloc ()">graphene_rect_alloc</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
916
|
+
</dt>
|
917
|
+
<dd></dd>
|
918
|
+
<dt>
|
919
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-contains-point" title="graphene_rect_contains_point ()">graphene_rect_contains_point</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
920
|
+
</dt>
|
921
|
+
<dd></dd>
|
922
|
+
<dt>
|
923
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-contains-rect" title="graphene_rect_contains_rect ()">graphene_rect_contains_rect</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
924
|
+
</dt>
|
925
|
+
<dd></dd>
|
926
|
+
<dt>
|
927
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-equal" title="graphene_rect_equal ()">graphene_rect_equal</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
928
|
+
</dt>
|
929
|
+
<dd></dd>
|
930
|
+
<dt>
|
931
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-expand" title="graphene_rect_expand ()">graphene_rect_expand</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
932
|
+
</dt>
|
933
|
+
<dd></dd>
|
934
|
+
<dt>
|
935
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-free" title="graphene_rect_free ()">graphene_rect_free</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
936
|
+
</dt>
|
937
|
+
<dd></dd>
|
938
|
+
<dt>
|
939
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-get-bottom-left" title="graphene_rect_get_bottom_left ()">graphene_rect_get_bottom_left</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
940
|
+
</dt>
|
941
|
+
<dd></dd>
|
942
|
+
<dt>
|
943
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-get-bottom-right" title="graphene_rect_get_bottom_right ()">graphene_rect_get_bottom_right</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
944
|
+
</dt>
|
945
|
+
<dd></dd>
|
946
|
+
<dt>
|
947
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-get-center" title="graphene_rect_get_center ()">graphene_rect_get_center</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
948
|
+
</dt>
|
949
|
+
<dd></dd>
|
950
|
+
<dt>
|
951
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-get-height" title="graphene_rect_get_height ()">graphene_rect_get_height</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
952
|
+
</dt>
|
953
|
+
<dd></dd>
|
954
|
+
<dt>
|
955
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-get-top-left" title="graphene_rect_get_top_left ()">graphene_rect_get_top_left</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
956
|
+
</dt>
|
957
|
+
<dd></dd>
|
958
|
+
<dt>
|
959
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-get-top-right" title="graphene_rect_get_top_right ()">graphene_rect_get_top_right</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
960
|
+
</dt>
|
961
|
+
<dd></dd>
|
962
|
+
<dt>
|
963
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-get-vertices" title="graphene_rect_get_vertices ()">graphene_rect_get_vertices</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
964
|
+
</dt>
|
965
|
+
<dd></dd>
|
966
|
+
<dt>
|
967
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-get-width" title="graphene_rect_get_width ()">graphene_rect_get_width</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
968
|
+
</dt>
|
969
|
+
<dd></dd>
|
970
|
+
<dt>
|
971
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-get-x" title="graphene_rect_get_x ()">graphene_rect_get_x</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
972
|
+
</dt>
|
973
|
+
<dd></dd>
|
974
|
+
<dt>
|
975
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-get-y" title="graphene_rect_get_y ()">graphene_rect_get_y</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
976
|
+
</dt>
|
977
|
+
<dd></dd>
|
978
|
+
<dt>
|
979
|
+
<a class="link" href="graphene-Rectangle.html#GRAPHENE-RECT-INIT:CAPS" title="GRAPHENE_RECT_INIT()">GRAPHENE_RECT_INIT</a>, macro in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
980
|
+
</dt>
|
981
|
+
<dd></dd>
|
982
|
+
<dt>
|
983
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-init" title="graphene_rect_init ()">graphene_rect_init</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
984
|
+
</dt>
|
985
|
+
<dd></dd>
|
986
|
+
<dt>
|
987
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-init-from-rect" title="graphene_rect_init_from_rect ()">graphene_rect_init_from_rect</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
988
|
+
</dt>
|
989
|
+
<dd></dd>
|
990
|
+
<dt>
|
991
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-inset" title="graphene_rect_inset ()">graphene_rect_inset</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
992
|
+
</dt>
|
993
|
+
<dd></dd>
|
994
|
+
<dt>
|
995
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-inset-r" title="graphene_rect_inset_r ()">graphene_rect_inset_r</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
996
|
+
</dt>
|
997
|
+
<dd></dd>
|
998
|
+
<dt>
|
999
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-interpolate" title="graphene_rect_interpolate ()">graphene_rect_interpolate</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
1000
|
+
</dt>
|
1001
|
+
<dd></dd>
|
1002
|
+
<dt>
|
1003
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-intersection" title="graphene_rect_intersection ()">graphene_rect_intersection</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
1004
|
+
</dt>
|
1005
|
+
<dd></dd>
|
1006
|
+
<dt>
|
1007
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-normalize" title="graphene_rect_normalize ()">graphene_rect_normalize</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
1008
|
+
</dt>
|
1009
|
+
<dd></dd>
|
1010
|
+
<dt>
|
1011
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-normalize-r" title="graphene_rect_normalize_r ()">graphene_rect_normalize_r</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
1012
|
+
</dt>
|
1013
|
+
<dd></dd>
|
1014
|
+
<dt>
|
1015
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-offset" title="graphene_rect_offset ()">graphene_rect_offset</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
1016
|
+
</dt>
|
1017
|
+
<dd></dd>
|
1018
|
+
<dt>
|
1019
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-offset-r" title="graphene_rect_offset_r ()">graphene_rect_offset_r</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
1020
|
+
</dt>
|
1021
|
+
<dd></dd>
|
1022
|
+
<dt>
|
1023
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-round" title="graphene_rect_round ()">graphene_rect_round</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
1024
|
+
</dt>
|
1025
|
+
<dd></dd>
|
1026
|
+
<dt>
|
1027
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-round-to-pixel" title="graphene_rect_round_to_pixel ()">graphene_rect_round_to_pixel</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
1028
|
+
</dt>
|
1029
|
+
<dd></dd>
|
1030
|
+
<dt>
|
1031
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-t" title="graphene_rect_t">graphene_rect_t</a>, struct in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
1032
|
+
</dt>
|
1033
|
+
<dd></dd>
|
1034
|
+
<dt>
|
1035
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-union" title="graphene_rect_union ()">graphene_rect_union</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
1036
|
+
</dt>
|
1037
|
+
<dd></dd>
|
1038
|
+
<dt>
|
1039
|
+
<a class="link" href="graphene-Rectangle.html#graphene-rect-zero" title="graphene_rect_zero ()">graphene_rect_zero</a>, function in <a class="link" href="graphene-Rectangle.html" title="Rectangle">Rectangle</a>
|
1040
|
+
</dt>
|
1041
|
+
<dd></dd>
|
1042
|
+
<a name="idxS"></a><h3 class="title">S</h3>
|
1043
|
+
<dt>
|
1044
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-add" title="graphene_simd4f_add ()">graphene_simd4f_add</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1045
|
+
</dt>
|
1046
|
+
<dd></dd>
|
1047
|
+
<dt>
|
1048
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-clamp" title="graphene_simd4f_clamp ()">graphene_simd4f_clamp</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1049
|
+
</dt>
|
1050
|
+
<dd></dd>
|
1051
|
+
<dt>
|
1052
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-clamp-scalar" title="graphene_simd4f_clamp_scalar ()">graphene_simd4f_clamp_scalar</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1053
|
+
</dt>
|
1054
|
+
<dd></dd>
|
1055
|
+
<dt>
|
1056
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-cmp-eq" title="graphene_simd4f_cmp_eq ()">graphene_simd4f_cmp_eq</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1057
|
+
</dt>
|
1058
|
+
<dd></dd>
|
1059
|
+
<dt>
|
1060
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-cmp-ge" title="graphene_simd4f_cmp_ge ()">graphene_simd4f_cmp_ge</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1061
|
+
</dt>
|
1062
|
+
<dd></dd>
|
1063
|
+
<dt>
|
1064
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-cmp-gt" title="graphene_simd4f_cmp_gt ()">graphene_simd4f_cmp_gt</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1065
|
+
</dt>
|
1066
|
+
<dd></dd>
|
1067
|
+
<dt>
|
1068
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-cmp-le" title="graphene_simd4f_cmp_le ()">graphene_simd4f_cmp_le</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1069
|
+
</dt>
|
1070
|
+
<dd></dd>
|
1071
|
+
<dt>
|
1072
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-cmp-lt" title="graphene_simd4f_cmp_lt ()">graphene_simd4f_cmp_lt</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1073
|
+
</dt>
|
1074
|
+
<dd></dd>
|
1075
|
+
<dt>
|
1076
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-cmp-neq" title="graphene_simd4f_cmp_neq ()">graphene_simd4f_cmp_neq</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1077
|
+
</dt>
|
1078
|
+
<dd></dd>
|
1079
|
+
<dt>
|
1080
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-cross3" title="graphene_simd4f_cross3 ()">graphene_simd4f_cross3</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1081
|
+
</dt>
|
1082
|
+
<dd></dd>
|
1083
|
+
<dt>
|
1084
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-div" title="graphene_simd4f_div ()">graphene_simd4f_div</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1085
|
+
</dt>
|
1086
|
+
<dd></dd>
|
1087
|
+
<dt>
|
1088
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-dot2" title="graphene_simd4f_dot2 ()">graphene_simd4f_dot2</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1089
|
+
</dt>
|
1090
|
+
<dd></dd>
|
1091
|
+
<dt>
|
1092
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-dot3" title="graphene_simd4f_dot3 ()">graphene_simd4f_dot3</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1093
|
+
</dt>
|
1094
|
+
<dd></dd>
|
1095
|
+
<dt>
|
1096
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-dot3-scalar" title="graphene_simd4f_dot3_scalar ()">graphene_simd4f_dot3_scalar</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1097
|
+
</dt>
|
1098
|
+
<dd></dd>
|
1099
|
+
<dt>
|
1100
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-dot4" title="graphene_simd4f_dot4 ()">graphene_simd4f_dot4</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1101
|
+
</dt>
|
1102
|
+
<dd></dd>
|
1103
|
+
<dt>
|
1104
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-dup-2f" title="graphene_simd4f_dup_2f ()">graphene_simd4f_dup_2f</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1105
|
+
</dt>
|
1106
|
+
<dd></dd>
|
1107
|
+
<dt>
|
1108
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-dup-3f" title="graphene_simd4f_dup_3f ()">graphene_simd4f_dup_3f</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1109
|
+
</dt>
|
1110
|
+
<dd></dd>
|
1111
|
+
<dt>
|
1112
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-dup-4f" title="graphene_simd4f_dup_4f ()">graphene_simd4f_dup_4f</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1113
|
+
</dt>
|
1114
|
+
<dd></dd>
|
1115
|
+
<dt>
|
1116
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-flip-sign-0101" title="graphene_simd4f_flip_sign_0101 ()">graphene_simd4f_flip_sign_0101</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1117
|
+
</dt>
|
1118
|
+
<dd></dd>
|
1119
|
+
<dt>
|
1120
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-flip-sign-1010" title="graphene_simd4f_flip_sign_1010 ()">graphene_simd4f_flip_sign_1010</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1121
|
+
</dt>
|
1122
|
+
<dd></dd>
|
1123
|
+
<dt>
|
1124
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-get" title="graphene_simd4f_get ()">graphene_simd4f_get</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1125
|
+
</dt>
|
1126
|
+
<dd></dd>
|
1127
|
+
<dt>
|
1128
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-get-w" title="graphene_simd4f_get_w ()">graphene_simd4f_get_w</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1129
|
+
</dt>
|
1130
|
+
<dd></dd>
|
1131
|
+
<dt>
|
1132
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-get-x" title="graphene_simd4f_get_x ()">graphene_simd4f_get_x</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1133
|
+
</dt>
|
1134
|
+
<dd></dd>
|
1135
|
+
<dt>
|
1136
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-get-y" title="graphene_simd4f_get_y ()">graphene_simd4f_get_y</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1137
|
+
</dt>
|
1138
|
+
<dd></dd>
|
1139
|
+
<dt>
|
1140
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-get-z" title="graphene_simd4f_get_z ()">graphene_simd4f_get_z</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1141
|
+
</dt>
|
1142
|
+
<dd></dd>
|
1143
|
+
<dt>
|
1144
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-init" title="graphene_simd4f_init ()">graphene_simd4f_init</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1145
|
+
</dt>
|
1146
|
+
<dd></dd>
|
1147
|
+
<dt>
|
1148
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-init-2f" title="graphene_simd4f_init_2f ()">graphene_simd4f_init_2f</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1149
|
+
</dt>
|
1150
|
+
<dd></dd>
|
1151
|
+
<dt>
|
1152
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-init-3f" title="graphene_simd4f_init_3f ()">graphene_simd4f_init_3f</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1153
|
+
</dt>
|
1154
|
+
<dd></dd>
|
1155
|
+
<dt>
|
1156
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-init-4f" title="graphene_simd4f_init_4f ()">graphene_simd4f_init_4f</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1157
|
+
</dt>
|
1158
|
+
<dd></dd>
|
1159
|
+
<dt>
|
1160
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-init-zero" title="graphene_simd4f_init_zero ()">graphene_simd4f_init_zero</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1161
|
+
</dt>
|
1162
|
+
<dd></dd>
|
1163
|
+
<dt>
|
1164
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-interpolate" title="graphene_simd4f_interpolate ()">graphene_simd4f_interpolate</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1165
|
+
</dt>
|
1166
|
+
<dd></dd>
|
1167
|
+
<dt>
|
1168
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-is-zero2" title="graphene_simd4f_is_zero2 ()">graphene_simd4f_is_zero2</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1169
|
+
</dt>
|
1170
|
+
<dd></dd>
|
1171
|
+
<dt>
|
1172
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-is-zero3" title="graphene_simd4f_is_zero3 ()">graphene_simd4f_is_zero3</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1173
|
+
</dt>
|
1174
|
+
<dd></dd>
|
1175
|
+
<dt>
|
1176
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-is-zero4" title="graphene_simd4f_is_zero4 ()">graphene_simd4f_is_zero4</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1177
|
+
</dt>
|
1178
|
+
<dd></dd>
|
1179
|
+
<dt>
|
1180
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-length2" title="graphene_simd4f_length2 ()">graphene_simd4f_length2</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1181
|
+
</dt>
|
1182
|
+
<dd></dd>
|
1183
|
+
<dt>
|
1184
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-length3" title="graphene_simd4f_length3 ()">graphene_simd4f_length3</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1185
|
+
</dt>
|
1186
|
+
<dd></dd>
|
1187
|
+
<dt>
|
1188
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-length4" title="graphene_simd4f_length4 ()">graphene_simd4f_length4</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1189
|
+
</dt>
|
1190
|
+
<dd></dd>
|
1191
|
+
<dt>
|
1192
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-madd" title="graphene_simd4f_madd ()">graphene_simd4f_madd</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1193
|
+
</dt>
|
1194
|
+
<dd></dd>
|
1195
|
+
<dt>
|
1196
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-max" title="graphene_simd4f_max ()">graphene_simd4f_max</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1197
|
+
</dt>
|
1198
|
+
<dd></dd>
|
1199
|
+
<dt>
|
1200
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-max-val" title="graphene_simd4f_max_val ()">graphene_simd4f_max_val</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1201
|
+
</dt>
|
1202
|
+
<dd></dd>
|
1203
|
+
<dt>
|
1204
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-merge-high" title="graphene_simd4f_merge_high ()">graphene_simd4f_merge_high</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1205
|
+
</dt>
|
1206
|
+
<dd></dd>
|
1207
|
+
<dt>
|
1208
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-merge-low" title="graphene_simd4f_merge_low ()">graphene_simd4f_merge_low</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1209
|
+
</dt>
|
1210
|
+
<dd></dd>
|
1211
|
+
<dt>
|
1212
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-merge-w" title="graphene_simd4f_merge_w ()">graphene_simd4f_merge_w</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1213
|
+
</dt>
|
1214
|
+
<dd></dd>
|
1215
|
+
<dt>
|
1216
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-min" title="graphene_simd4f_min ()">graphene_simd4f_min</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1217
|
+
</dt>
|
1218
|
+
<dd></dd>
|
1219
|
+
<dt>
|
1220
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-min-val" title="graphene_simd4f_min_val ()">graphene_simd4f_min_val</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1221
|
+
</dt>
|
1222
|
+
<dd></dd>
|
1223
|
+
<dt>
|
1224
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-mul" title="graphene_simd4f_mul ()">graphene_simd4f_mul</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1225
|
+
</dt>
|
1226
|
+
<dd></dd>
|
1227
|
+
<dt>
|
1228
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-neg" title="graphene_simd4f_neg ()">graphene_simd4f_neg</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1229
|
+
</dt>
|
1230
|
+
<dd></dd>
|
1231
|
+
<dt>
|
1232
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-normalize2" title="graphene_simd4f_normalize2 ()">graphene_simd4f_normalize2</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1233
|
+
</dt>
|
1234
|
+
<dd></dd>
|
1235
|
+
<dt>
|
1236
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-normalize3" title="graphene_simd4f_normalize3 ()">graphene_simd4f_normalize3</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1237
|
+
</dt>
|
1238
|
+
<dd></dd>
|
1239
|
+
<dt>
|
1240
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-normalize4" title="graphene_simd4f_normalize4 ()">graphene_simd4f_normalize4</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1241
|
+
</dt>
|
1242
|
+
<dd></dd>
|
1243
|
+
<dt>
|
1244
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-reciprocal" title="graphene_simd4f_reciprocal ()">graphene_simd4f_reciprocal</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1245
|
+
</dt>
|
1246
|
+
<dd></dd>
|
1247
|
+
<dt>
|
1248
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-rsqrt" title="graphene_simd4f_rsqrt ()">graphene_simd4f_rsqrt</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1249
|
+
</dt>
|
1250
|
+
<dd></dd>
|
1251
|
+
<dt>
|
1252
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-shuffle-wxyz" title="graphene_simd4f_shuffle_wxyz ()">graphene_simd4f_shuffle_wxyz</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1253
|
+
</dt>
|
1254
|
+
<dd></dd>
|
1255
|
+
<dt>
|
1256
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-shuffle-yzwx" title="graphene_simd4f_shuffle_yzwx ()">graphene_simd4f_shuffle_yzwx</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1257
|
+
</dt>
|
1258
|
+
<dd></dd>
|
1259
|
+
<dt>
|
1260
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-shuffle-zwxy" title="graphene_simd4f_shuffle_zwxy ()">graphene_simd4f_shuffle_zwxy</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1261
|
+
</dt>
|
1262
|
+
<dd></dd>
|
1263
|
+
<dt>
|
1264
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-splat" title="graphene_simd4f_splat ()">graphene_simd4f_splat</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1265
|
+
</dt>
|
1266
|
+
<dd></dd>
|
1267
|
+
<dt>
|
1268
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-splat-w" title="graphene_simd4f_splat_w ()">graphene_simd4f_splat_w</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1269
|
+
</dt>
|
1270
|
+
<dd></dd>
|
1271
|
+
<dt>
|
1272
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-splat-x" title="graphene_simd4f_splat_x ()">graphene_simd4f_splat_x</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1273
|
+
</dt>
|
1274
|
+
<dd></dd>
|
1275
|
+
<dt>
|
1276
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-splat-y" title="graphene_simd4f_splat_y ()">graphene_simd4f_splat_y</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1277
|
+
</dt>
|
1278
|
+
<dd></dd>
|
1279
|
+
<dt>
|
1280
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-splat-z" title="graphene_simd4f_splat_z ()">graphene_simd4f_splat_z</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1281
|
+
</dt>
|
1282
|
+
<dd></dd>
|
1283
|
+
<dt>
|
1284
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-sqrt" title="graphene_simd4f_sqrt ()">graphene_simd4f_sqrt</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1285
|
+
</dt>
|
1286
|
+
<dd></dd>
|
1287
|
+
<dt>
|
1288
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-sub" title="graphene_simd4f_sub ()">graphene_simd4f_sub</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1289
|
+
</dt>
|
1290
|
+
<dd></dd>
|
1291
|
+
<dt>
|
1292
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-sum" title="graphene_simd4f_sum ()">graphene_simd4f_sum</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1293
|
+
</dt>
|
1294
|
+
<dd></dd>
|
1295
|
+
<dt>
|
1296
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-sum-scalar" title="graphene_simd4f_sum_scalar ()">graphene_simd4f_sum_scalar</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1297
|
+
</dt>
|
1298
|
+
<dd></dd>
|
1299
|
+
<dt>
|
1300
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-t" title="graphene_simd4f_t">graphene_simd4f_t</a>, struct in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1301
|
+
</dt>
|
1302
|
+
<dd></dd>
|
1303
|
+
<dt>
|
1304
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-zero-w" title="graphene_simd4f_zero_w ()">graphene_simd4f_zero_w</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1305
|
+
</dt>
|
1306
|
+
<dd></dd>
|
1307
|
+
<dt>
|
1308
|
+
<a class="link" href="graphene-SIMD-vector.html#graphene-simd4f-zero-zw" title="graphene_simd4f_zero_zw ()">graphene_simd4f_zero_zw</a>, function in <a class="link" href="graphene-SIMD-vector.html" title="SIMD vector">SIMD vector</a>
|
1309
|
+
</dt>
|
1310
|
+
<dd></dd>
|
1311
|
+
<dt>
|
1312
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-add" title="graphene_simd4x4f_add ()">graphene_simd4x4f_add</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1313
|
+
</dt>
|
1314
|
+
<dd></dd>
|
1315
|
+
<dt>
|
1316
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-determinant" title="graphene_simd4x4f_determinant ()">graphene_simd4x4f_determinant</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1317
|
+
</dt>
|
1318
|
+
<dd></dd>
|
1319
|
+
<dt>
|
1320
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-div" title="graphene_simd4x4f_div ()">graphene_simd4x4f_div</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1321
|
+
</dt>
|
1322
|
+
<dd></dd>
|
1323
|
+
<dt>
|
1324
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-init" title="graphene_simd4x4f_init ()">graphene_simd4x4f_init</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1325
|
+
</dt>
|
1326
|
+
<dd></dd>
|
1327
|
+
<dt>
|
1328
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-init-from-float" title="graphene_simd4x4f_init_from_float ()">graphene_simd4x4f_init_from_float</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1329
|
+
</dt>
|
1330
|
+
<dd></dd>
|
1331
|
+
<dt>
|
1332
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-init-frustum" title="graphene_simd4x4f_init_frustum ()">graphene_simd4x4f_init_frustum</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1333
|
+
</dt>
|
1334
|
+
<dd></dd>
|
1335
|
+
<dt>
|
1336
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-init-identity" title="graphene_simd4x4f_init_identity ()">graphene_simd4x4f_init_identity</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1337
|
+
</dt>
|
1338
|
+
<dd></dd>
|
1339
|
+
<dt>
|
1340
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-init-look-at" title="graphene_simd4x4f_init_look_at ()">graphene_simd4x4f_init_look_at</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1341
|
+
</dt>
|
1342
|
+
<dd></dd>
|
1343
|
+
<dt>
|
1344
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-init-ortho" title="graphene_simd4x4f_init_ortho ()">graphene_simd4x4f_init_ortho</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1345
|
+
</dt>
|
1346
|
+
<dd></dd>
|
1347
|
+
<dt>
|
1348
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-init-perspective" title="graphene_simd4x4f_init_perspective ()">graphene_simd4x4f_init_perspective</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1349
|
+
</dt>
|
1350
|
+
<dd></dd>
|
1351
|
+
<dt>
|
1352
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-inverse" title="graphene_simd4x4f_inverse ()">graphene_simd4x4f_inverse</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1353
|
+
</dt>
|
1354
|
+
<dd></dd>
|
1355
|
+
<dt>
|
1356
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-inv-ortho-point3-mul" title="graphene_simd4x4f_inv_ortho_point3_mul ()">graphene_simd4x4f_inv_ortho_point3_mul</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1357
|
+
</dt>
|
1358
|
+
<dd></dd>
|
1359
|
+
<dt>
|
1360
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-inv-ortho-vec3-mul" title="graphene_simd4x4f_inv_ortho_vec3_mul ()">graphene_simd4x4f_inv_ortho_vec3_mul</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1361
|
+
</dt>
|
1362
|
+
<dd></dd>
|
1363
|
+
<dt>
|
1364
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-is-2d" title="graphene_simd4x4f_is_2d ()">graphene_simd4x4f_is_2d</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1365
|
+
</dt>
|
1366
|
+
<dd></dd>
|
1367
|
+
<dt>
|
1368
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-is-identity" title="graphene_simd4x4f_is_identity ()">graphene_simd4x4f_is_identity</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1369
|
+
</dt>
|
1370
|
+
<dd></dd>
|
1371
|
+
<dt>
|
1372
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-matrix-mul" title="graphene_simd4x4f_matrix_mul ()">graphene_simd4x4f_matrix_mul</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1373
|
+
</dt>
|
1374
|
+
<dd></dd>
|
1375
|
+
<dt>
|
1376
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-mul" title="graphene_simd4x4f_mul ()">graphene_simd4x4f_mul</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1377
|
+
</dt>
|
1378
|
+
<dd></dd>
|
1379
|
+
<dt>
|
1380
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-perspective" title="graphene_simd4x4f_perspective ()">graphene_simd4x4f_perspective</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1381
|
+
</dt>
|
1382
|
+
<dd></dd>
|
1383
|
+
<dt>
|
1384
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-point3-mul" title="graphene_simd4x4f_point3_mul ()">graphene_simd4x4f_point3_mul</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1385
|
+
</dt>
|
1386
|
+
<dd></dd>
|
1387
|
+
<dt>
|
1388
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-rotation" title="graphene_simd4x4f_rotation ()">graphene_simd4x4f_rotation</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1389
|
+
</dt>
|
1390
|
+
<dd></dd>
|
1391
|
+
<dt>
|
1392
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-scale" title="graphene_simd4x4f_scale ()">graphene_simd4x4f_scale</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1393
|
+
</dt>
|
1394
|
+
<dd></dd>
|
1395
|
+
<dt>
|
1396
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-sub" title="graphene_simd4x4f_sub ()">graphene_simd4x4f_sub</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1397
|
+
</dt>
|
1398
|
+
<dd></dd>
|
1399
|
+
<dt>
|
1400
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-sum" title="graphene_simd4x4f_sum ()">graphene_simd4x4f_sum</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1401
|
+
</dt>
|
1402
|
+
<dd></dd>
|
1403
|
+
<dt>
|
1404
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-t" title="graphene_simd4x4f_t">graphene_simd4x4f_t</a>, struct in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1405
|
+
</dt>
|
1406
|
+
<dd></dd>
|
1407
|
+
<dt>
|
1408
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-to-float" title="graphene_simd4x4f_to_float ()">graphene_simd4x4f_to_float</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1409
|
+
</dt>
|
1410
|
+
<dd></dd>
|
1411
|
+
<dt>
|
1412
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-translation" title="graphene_simd4x4f_translation ()">graphene_simd4x4f_translation</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1413
|
+
</dt>
|
1414
|
+
<dd></dd>
|
1415
|
+
<dt>
|
1416
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-transpose" title="graphene_simd4x4f_transpose ()">graphene_simd4x4f_transpose</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1417
|
+
</dt>
|
1418
|
+
<dd></dd>
|
1419
|
+
<dt>
|
1420
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-transpose-in-place" title="graphene_simd4x4f_transpose_in_place ()">graphene_simd4x4f_transpose_in_place</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1421
|
+
</dt>
|
1422
|
+
<dd></dd>
|
1423
|
+
<dt>
|
1424
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-vec3-mul" title="graphene_simd4x4f_vec3_mul ()">graphene_simd4x4f_vec3_mul</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1425
|
+
</dt>
|
1426
|
+
<dd></dd>
|
1427
|
+
<dt>
|
1428
|
+
<a class="link" href="graphene-SIMD-matrix.html#graphene-simd4x4f-vec4-mul" title="graphene_simd4x4f_vec4_mul ()">graphene_simd4x4f_vec4_mul</a>, function in <a class="link" href="graphene-SIMD-matrix.html" title="SIMD matrix">SIMD matrix</a>
|
1429
|
+
</dt>
|
1430
|
+
<dd></dd>
|
1431
|
+
<dt>
|
1432
|
+
<a class="link" href="graphene-Size.html#graphene-size-alloc" title="graphene_size_alloc ()">graphene_size_alloc</a>, function in <a class="link" href="graphene-Size.html" title="Size">Size</a>
|
1433
|
+
</dt>
|
1434
|
+
<dd></dd>
|
1435
|
+
<dt>
|
1436
|
+
<a class="link" href="graphene-Size.html#graphene-size-equal" title="graphene_size_equal ()">graphene_size_equal</a>, function in <a class="link" href="graphene-Size.html" title="Size">Size</a>
|
1437
|
+
</dt>
|
1438
|
+
<dd></dd>
|
1439
|
+
<dt>
|
1440
|
+
<a class="link" href="graphene-Size.html#graphene-size-free" title="graphene_size_free ()">graphene_size_free</a>, function in <a class="link" href="graphene-Size.html" title="Size">Size</a>
|
1441
|
+
</dt>
|
1442
|
+
<dd></dd>
|
1443
|
+
<dt>
|
1444
|
+
<a class="link" href="graphene-Size.html#GRAPHENE-SIZE-INIT:CAPS" title="GRAPHENE_SIZE_INIT()">GRAPHENE_SIZE_INIT</a>, macro in <a class="link" href="graphene-Size.html" title="Size">Size</a>
|
1445
|
+
</dt>
|
1446
|
+
<dd></dd>
|
1447
|
+
<dt>
|
1448
|
+
<a class="link" href="graphene-Size.html#graphene-size-init" title="graphene_size_init ()">graphene_size_init</a>, function in <a class="link" href="graphene-Size.html" title="Size">Size</a>
|
1449
|
+
</dt>
|
1450
|
+
<dd></dd>
|
1451
|
+
<dt>
|
1452
|
+
<a class="link" href="graphene-Size.html#graphene-size-init-from-size" title="graphene_size_init_from_size ()">graphene_size_init_from_size</a>, function in <a class="link" href="graphene-Size.html" title="Size">Size</a>
|
1453
|
+
</dt>
|
1454
|
+
<dd></dd>
|
1455
|
+
<dt>
|
1456
|
+
<a class="link" href="graphene-Size.html#GRAPHENE-SIZE-INIT-ZERO:CAPS" title="GRAPHENE_SIZE_INIT_ZERO">GRAPHENE_SIZE_INIT_ZERO</a>, macro in <a class="link" href="graphene-Size.html" title="Size">Size</a>
|
1457
|
+
</dt>
|
1458
|
+
<dd></dd>
|
1459
|
+
<dt>
|
1460
|
+
<a class="link" href="graphene-Size.html#graphene-size-interpolate" title="graphene_size_interpolate ()">graphene_size_interpolate</a>, function in <a class="link" href="graphene-Size.html" title="Size">Size</a>
|
1461
|
+
</dt>
|
1462
|
+
<dd></dd>
|
1463
|
+
<dt>
|
1464
|
+
<a class="link" href="graphene-Size.html#graphene-size-scale" title="graphene_size_scale ()">graphene_size_scale</a>, function in <a class="link" href="graphene-Size.html" title="Size">Size</a>
|
1465
|
+
</dt>
|
1466
|
+
<dd></dd>
|
1467
|
+
<dt>
|
1468
|
+
<a class="link" href="graphene-Size.html#graphene-size-t" title="graphene_size_t">graphene_size_t</a>, struct in <a class="link" href="graphene-Size.html" title="Size">Size</a>
|
1469
|
+
</dt>
|
1470
|
+
<dd></dd>
|
1471
|
+
<dt>
|
1472
|
+
<a class="link" href="graphene-Size.html#graphene-size-zero" title="graphene_size_zero ()">graphene_size_zero</a>, function in <a class="link" href="graphene-Size.html" title="Size">Size</a>
|
1473
|
+
</dt>
|
1474
|
+
<dd></dd>
|
1475
|
+
<dt>
|
1476
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-alloc" title="graphene_sphere_alloc ()">graphene_sphere_alloc</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1477
|
+
</dt>
|
1478
|
+
<dd></dd>
|
1479
|
+
<dt>
|
1480
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-contains-point" title="graphene_sphere_contains_point ()">graphene_sphere_contains_point</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1481
|
+
</dt>
|
1482
|
+
<dd></dd>
|
1483
|
+
<dt>
|
1484
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-distance" title="graphene_sphere_distance ()">graphene_sphere_distance</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1485
|
+
</dt>
|
1486
|
+
<dd></dd>
|
1487
|
+
<dt>
|
1488
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-equal" title="graphene_sphere_equal ()">graphene_sphere_equal</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1489
|
+
</dt>
|
1490
|
+
<dd></dd>
|
1491
|
+
<dt>
|
1492
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-free" title="graphene_sphere_free ()">graphene_sphere_free</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1493
|
+
</dt>
|
1494
|
+
<dd></dd>
|
1495
|
+
<dt>
|
1496
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-get-bounding-box" title="graphene_sphere_get_bounding_box ()">graphene_sphere_get_bounding_box</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1497
|
+
</dt>
|
1498
|
+
<dd></dd>
|
1499
|
+
<dt>
|
1500
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-get-center" title="graphene_sphere_get_center ()">graphene_sphere_get_center</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1501
|
+
</dt>
|
1502
|
+
<dd></dd>
|
1503
|
+
<dt>
|
1504
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-get-radius" title="graphene_sphere_get_radius ()">graphene_sphere_get_radius</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1505
|
+
</dt>
|
1506
|
+
<dd></dd>
|
1507
|
+
<dt>
|
1508
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-init" title="graphene_sphere_init ()">graphene_sphere_init</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1509
|
+
</dt>
|
1510
|
+
<dd></dd>
|
1511
|
+
<dt>
|
1512
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-init-from-points" title="graphene_sphere_init_from_points ()">graphene_sphere_init_from_points</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1513
|
+
</dt>
|
1514
|
+
<dd></dd>
|
1515
|
+
<dt>
|
1516
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-init-from-vectors" title="graphene_sphere_init_from_vectors ()">graphene_sphere_init_from_vectors</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1517
|
+
</dt>
|
1518
|
+
<dd></dd>
|
1519
|
+
<dt>
|
1520
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-is-empty" title="graphene_sphere_is_empty ()">graphene_sphere_is_empty</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1521
|
+
</dt>
|
1522
|
+
<dd></dd>
|
1523
|
+
<dt>
|
1524
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-t" title="graphene_sphere_t">graphene_sphere_t</a>, struct in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1525
|
+
</dt>
|
1526
|
+
<dd></dd>
|
1527
|
+
<dt>
|
1528
|
+
<a class="link" href="graphene-Sphere.html#graphene-sphere-translate" title="graphene_sphere_translate ()">graphene_sphere_translate</a>, function in <a class="link" href="graphene-Sphere.html" title="Sphere">Sphere</a>
|
1529
|
+
</dt>
|
1530
|
+
<dd></dd>
|
1531
|
+
<a name="idxT"></a><h3 class="title">T</h3>
|
1532
|
+
<dt>
|
1533
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-alloc" title="graphene_triangle_alloc ()">graphene_triangle_alloc</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1534
|
+
</dt>
|
1535
|
+
<dd></dd>
|
1536
|
+
<dt>
|
1537
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-contains-point" title="graphene_triangle_contains_point ()">graphene_triangle_contains_point</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1538
|
+
</dt>
|
1539
|
+
<dd></dd>
|
1540
|
+
<dt>
|
1541
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-equal" title="graphene_triangle_equal ()">graphene_triangle_equal</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1542
|
+
</dt>
|
1543
|
+
<dd></dd>
|
1544
|
+
<dt>
|
1545
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-free" title="graphene_triangle_free ()">graphene_triangle_free</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1546
|
+
</dt>
|
1547
|
+
<dd></dd>
|
1548
|
+
<dt>
|
1549
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-get-area" title="graphene_triangle_get_area ()">graphene_triangle_get_area</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1550
|
+
</dt>
|
1551
|
+
<dd></dd>
|
1552
|
+
<dt>
|
1553
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-get-barycoords" title="graphene_triangle_get_barycoords ()">graphene_triangle_get_barycoords</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1554
|
+
</dt>
|
1555
|
+
<dd></dd>
|
1556
|
+
<dt>
|
1557
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-get-bounding-box" title="graphene_triangle_get_bounding_box ()">graphene_triangle_get_bounding_box</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1558
|
+
</dt>
|
1559
|
+
<dd></dd>
|
1560
|
+
<dt>
|
1561
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-get-midpoint" title="graphene_triangle_get_midpoint ()">graphene_triangle_get_midpoint</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1562
|
+
</dt>
|
1563
|
+
<dd></dd>
|
1564
|
+
<dt>
|
1565
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-get-normal" title="graphene_triangle_get_normal ()">graphene_triangle_get_normal</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1566
|
+
</dt>
|
1567
|
+
<dd></dd>
|
1568
|
+
<dt>
|
1569
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-get-plane" title="graphene_triangle_get_plane ()">graphene_triangle_get_plane</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1570
|
+
</dt>
|
1571
|
+
<dd></dd>
|
1572
|
+
<dt>
|
1573
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-get-points" title="graphene_triangle_get_points ()">graphene_triangle_get_points</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1574
|
+
</dt>
|
1575
|
+
<dd></dd>
|
1576
|
+
<dt>
|
1577
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-get-vertices" title="graphene_triangle_get_vertices ()">graphene_triangle_get_vertices</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1578
|
+
</dt>
|
1579
|
+
<dd></dd>
|
1580
|
+
<dt>
|
1581
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-init-from-point3d" title="graphene_triangle_init_from_point3d ()">graphene_triangle_init_from_point3d</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1582
|
+
</dt>
|
1583
|
+
<dd></dd>
|
1584
|
+
<dt>
|
1585
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-init-from-vec3" title="graphene_triangle_init_from_vec3 ()">graphene_triangle_init_from_vec3</a>, function in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1586
|
+
</dt>
|
1587
|
+
<dd></dd>
|
1588
|
+
<dt>
|
1589
|
+
<a class="link" href="graphene-Triangle.html#graphene-triangle-t" title="graphene_triangle_t">graphene_triangle_t</a>, struct in <a class="link" href="graphene-Triangle.html" title="Triangle">Triangle</a>
|
1590
|
+
</dt>
|
1591
|
+
<dd></dd>
|
1592
|
+
<a name="idxV"></a><h3 class="title">V</h3>
|
1593
|
+
<dt>
|
1594
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-add" title="graphene_vec2_add ()">graphene_vec2_add</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1595
|
+
</dt>
|
1596
|
+
<dd></dd>
|
1597
|
+
<dt>
|
1598
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-alloc" title="graphene_vec2_alloc ()">graphene_vec2_alloc</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1599
|
+
</dt>
|
1600
|
+
<dd></dd>
|
1601
|
+
<dt>
|
1602
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-divide" title="graphene_vec2_divide ()">graphene_vec2_divide</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1603
|
+
</dt>
|
1604
|
+
<dd></dd>
|
1605
|
+
<dt>
|
1606
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-dot" title="graphene_vec2_dot ()">graphene_vec2_dot</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1607
|
+
</dt>
|
1608
|
+
<dd></dd>
|
1609
|
+
<dt>
|
1610
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-equal" title="graphene_vec2_equal ()">graphene_vec2_equal</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1611
|
+
</dt>
|
1612
|
+
<dd></dd>
|
1613
|
+
<dt>
|
1614
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-free" title="graphene_vec2_free ()">graphene_vec2_free</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1615
|
+
</dt>
|
1616
|
+
<dd></dd>
|
1617
|
+
<dt>
|
1618
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-get-x" title="graphene_vec2_get_x ()">graphene_vec2_get_x</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1619
|
+
</dt>
|
1620
|
+
<dd></dd>
|
1621
|
+
<dt>
|
1622
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-get-y" title="graphene_vec2_get_y ()">graphene_vec2_get_y</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1623
|
+
</dt>
|
1624
|
+
<dd></dd>
|
1625
|
+
<dt>
|
1626
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-init" title="graphene_vec2_init ()">graphene_vec2_init</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1627
|
+
</dt>
|
1628
|
+
<dd></dd>
|
1629
|
+
<dt>
|
1630
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-init-from-float" title="graphene_vec2_init_from_float ()">graphene_vec2_init_from_float</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1631
|
+
</dt>
|
1632
|
+
<dd></dd>
|
1633
|
+
<dt>
|
1634
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-init-from-vec2" title="graphene_vec2_init_from_vec2 ()">graphene_vec2_init_from_vec2</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1635
|
+
</dt>
|
1636
|
+
<dd></dd>
|
1637
|
+
<dt>
|
1638
|
+
<a class="link" href="graphene-Vectors.html#GRAPHENE-VEC2-LEN:CAPS" title="GRAPHENE_VEC2_LEN">GRAPHENE_VEC2_LEN</a>, macro in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1639
|
+
</dt>
|
1640
|
+
<dd></dd>
|
1641
|
+
<dt>
|
1642
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-length" title="graphene_vec2_length ()">graphene_vec2_length</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1643
|
+
</dt>
|
1644
|
+
<dd></dd>
|
1645
|
+
<dt>
|
1646
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-max" title="graphene_vec2_max ()">graphene_vec2_max</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1647
|
+
</dt>
|
1648
|
+
<dd></dd>
|
1649
|
+
<dt>
|
1650
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-min" title="graphene_vec2_min ()">graphene_vec2_min</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1651
|
+
</dt>
|
1652
|
+
<dd></dd>
|
1653
|
+
<dt>
|
1654
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-multiply" title="graphene_vec2_multiply ()">graphene_vec2_multiply</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1655
|
+
</dt>
|
1656
|
+
<dd></dd>
|
1657
|
+
<dt>
|
1658
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-near" title="graphene_vec2_near ()">graphene_vec2_near</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1659
|
+
</dt>
|
1660
|
+
<dd></dd>
|
1661
|
+
<dt>
|
1662
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-negate" title="graphene_vec2_negate ()">graphene_vec2_negate</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1663
|
+
</dt>
|
1664
|
+
<dd></dd>
|
1665
|
+
<dt>
|
1666
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-normalize" title="graphene_vec2_normalize ()">graphene_vec2_normalize</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1667
|
+
</dt>
|
1668
|
+
<dd></dd>
|
1669
|
+
<dt>
|
1670
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-one" title="graphene_vec2_one ()">graphene_vec2_one</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1671
|
+
</dt>
|
1672
|
+
<dd></dd>
|
1673
|
+
<dt>
|
1674
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-scale" title="graphene_vec2_scale ()">graphene_vec2_scale</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1675
|
+
</dt>
|
1676
|
+
<dd></dd>
|
1677
|
+
<dt>
|
1678
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-subtract" title="graphene_vec2_subtract ()">graphene_vec2_subtract</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1679
|
+
</dt>
|
1680
|
+
<dd></dd>
|
1681
|
+
<dt>
|
1682
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-t" title="graphene_vec2_t">graphene_vec2_t</a>, struct in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1683
|
+
</dt>
|
1684
|
+
<dd></dd>
|
1685
|
+
<dt>
|
1686
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-to-float" title="graphene_vec2_to_float ()">graphene_vec2_to_float</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1687
|
+
</dt>
|
1688
|
+
<dd></dd>
|
1689
|
+
<dt>
|
1690
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-x-axis" title="graphene_vec2_x_axis ()">graphene_vec2_x_axis</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1691
|
+
</dt>
|
1692
|
+
<dd></dd>
|
1693
|
+
<dt>
|
1694
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-y-axis" title="graphene_vec2_y_axis ()">graphene_vec2_y_axis</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1695
|
+
</dt>
|
1696
|
+
<dd></dd>
|
1697
|
+
<dt>
|
1698
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec2-zero" title="graphene_vec2_zero ()">graphene_vec2_zero</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1699
|
+
</dt>
|
1700
|
+
<dd></dd>
|
1701
|
+
<dt>
|
1702
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-add" title="graphene_vec3_add ()">graphene_vec3_add</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1703
|
+
</dt>
|
1704
|
+
<dd></dd>
|
1705
|
+
<dt>
|
1706
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-alloc" title="graphene_vec3_alloc ()">graphene_vec3_alloc</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1707
|
+
</dt>
|
1708
|
+
<dd></dd>
|
1709
|
+
<dt>
|
1710
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-cross" title="graphene_vec3_cross ()">graphene_vec3_cross</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1711
|
+
</dt>
|
1712
|
+
<dd></dd>
|
1713
|
+
<dt>
|
1714
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-divide" title="graphene_vec3_divide ()">graphene_vec3_divide</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1715
|
+
</dt>
|
1716
|
+
<dd></dd>
|
1717
|
+
<dt>
|
1718
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-dot" title="graphene_vec3_dot ()">graphene_vec3_dot</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1719
|
+
</dt>
|
1720
|
+
<dd></dd>
|
1721
|
+
<dt>
|
1722
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-equal" title="graphene_vec3_equal ()">graphene_vec3_equal</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1723
|
+
</dt>
|
1724
|
+
<dd></dd>
|
1725
|
+
<dt>
|
1726
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-free" title="graphene_vec3_free ()">graphene_vec3_free</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1727
|
+
</dt>
|
1728
|
+
<dd></dd>
|
1729
|
+
<dt>
|
1730
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-get-x" title="graphene_vec3_get_x ()">graphene_vec3_get_x</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1731
|
+
</dt>
|
1732
|
+
<dd></dd>
|
1733
|
+
<dt>
|
1734
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-get-xy" title="graphene_vec3_get_xy ()">graphene_vec3_get_xy</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1735
|
+
</dt>
|
1736
|
+
<dd></dd>
|
1737
|
+
<dt>
|
1738
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-get-xy0" title="graphene_vec3_get_xy0 ()">graphene_vec3_get_xy0</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1739
|
+
</dt>
|
1740
|
+
<dd></dd>
|
1741
|
+
<dt>
|
1742
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-get-xyz0" title="graphene_vec3_get_xyz0 ()">graphene_vec3_get_xyz0</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1743
|
+
</dt>
|
1744
|
+
<dd></dd>
|
1745
|
+
<dt>
|
1746
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-get-xyz1" title="graphene_vec3_get_xyz1 ()">graphene_vec3_get_xyz1</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1747
|
+
</dt>
|
1748
|
+
<dd></dd>
|
1749
|
+
<dt>
|
1750
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-get-xyzw" title="graphene_vec3_get_xyzw ()">graphene_vec3_get_xyzw</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1751
|
+
</dt>
|
1752
|
+
<dd></dd>
|
1753
|
+
<dt>
|
1754
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-get-y" title="graphene_vec3_get_y ()">graphene_vec3_get_y</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1755
|
+
</dt>
|
1756
|
+
<dd></dd>
|
1757
|
+
<dt>
|
1758
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-get-z" title="graphene_vec3_get_z ()">graphene_vec3_get_z</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1759
|
+
</dt>
|
1760
|
+
<dd></dd>
|
1761
|
+
<dt>
|
1762
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-init" title="graphene_vec3_init ()">graphene_vec3_init</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1763
|
+
</dt>
|
1764
|
+
<dd></dd>
|
1765
|
+
<dt>
|
1766
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-init-from-float" title="graphene_vec3_init_from_float ()">graphene_vec3_init_from_float</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1767
|
+
</dt>
|
1768
|
+
<dd></dd>
|
1769
|
+
<dt>
|
1770
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-init-from-vec3" title="graphene_vec3_init_from_vec3 ()">graphene_vec3_init_from_vec3</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1771
|
+
</dt>
|
1772
|
+
<dd></dd>
|
1773
|
+
<dt>
|
1774
|
+
<a class="link" href="graphene-Vectors.html#GRAPHENE-VEC3-LEN:CAPS" title="GRAPHENE_VEC3_LEN">GRAPHENE_VEC3_LEN</a>, macro in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1775
|
+
</dt>
|
1776
|
+
<dd></dd>
|
1777
|
+
<dt>
|
1778
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-length" title="graphene_vec3_length ()">graphene_vec3_length</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1779
|
+
</dt>
|
1780
|
+
<dd></dd>
|
1781
|
+
<dt>
|
1782
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-max" title="graphene_vec3_max ()">graphene_vec3_max</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1783
|
+
</dt>
|
1784
|
+
<dd></dd>
|
1785
|
+
<dt>
|
1786
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-min" title="graphene_vec3_min ()">graphene_vec3_min</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1787
|
+
</dt>
|
1788
|
+
<dd></dd>
|
1789
|
+
<dt>
|
1790
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-multiply" title="graphene_vec3_multiply ()">graphene_vec3_multiply</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1791
|
+
</dt>
|
1792
|
+
<dd></dd>
|
1793
|
+
<dt>
|
1794
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-near" title="graphene_vec3_near ()">graphene_vec3_near</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1795
|
+
</dt>
|
1796
|
+
<dd></dd>
|
1797
|
+
<dt>
|
1798
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-negate" title="graphene_vec3_negate ()">graphene_vec3_negate</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1799
|
+
</dt>
|
1800
|
+
<dd></dd>
|
1801
|
+
<dt>
|
1802
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-normalize" title="graphene_vec3_normalize ()">graphene_vec3_normalize</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1803
|
+
</dt>
|
1804
|
+
<dd></dd>
|
1805
|
+
<dt>
|
1806
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-one" title="graphene_vec3_one ()">graphene_vec3_one</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1807
|
+
</dt>
|
1808
|
+
<dd></dd>
|
1809
|
+
<dt>
|
1810
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-scale" title="graphene_vec3_scale ()">graphene_vec3_scale</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1811
|
+
</dt>
|
1812
|
+
<dd></dd>
|
1813
|
+
<dt>
|
1814
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-subtract" title="graphene_vec3_subtract ()">graphene_vec3_subtract</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1815
|
+
</dt>
|
1816
|
+
<dd></dd>
|
1817
|
+
<dt>
|
1818
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-t" title="graphene_vec3_t">graphene_vec3_t</a>, struct in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1819
|
+
</dt>
|
1820
|
+
<dd></dd>
|
1821
|
+
<dt>
|
1822
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-to-float" title="graphene_vec3_to_float ()">graphene_vec3_to_float</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1823
|
+
</dt>
|
1824
|
+
<dd></dd>
|
1825
|
+
<dt>
|
1826
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-x-axis" title="graphene_vec3_x_axis ()">graphene_vec3_x_axis</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1827
|
+
</dt>
|
1828
|
+
<dd></dd>
|
1829
|
+
<dt>
|
1830
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-y-axis" title="graphene_vec3_y_axis ()">graphene_vec3_y_axis</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1831
|
+
</dt>
|
1832
|
+
<dd></dd>
|
1833
|
+
<dt>
|
1834
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-zero" title="graphene_vec3_zero ()">graphene_vec3_zero</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1835
|
+
</dt>
|
1836
|
+
<dd></dd>
|
1837
|
+
<dt>
|
1838
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec3-z-axis" title="graphene_vec3_z_axis ()">graphene_vec3_z_axis</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1839
|
+
</dt>
|
1840
|
+
<dd></dd>
|
1841
|
+
<dt>
|
1842
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-add" title="graphene_vec4_add ()">graphene_vec4_add</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1843
|
+
</dt>
|
1844
|
+
<dd></dd>
|
1845
|
+
<dt>
|
1846
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-alloc" title="graphene_vec4_alloc ()">graphene_vec4_alloc</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1847
|
+
</dt>
|
1848
|
+
<dd></dd>
|
1849
|
+
<dt>
|
1850
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-divide" title="graphene_vec4_divide ()">graphene_vec4_divide</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1851
|
+
</dt>
|
1852
|
+
<dd></dd>
|
1853
|
+
<dt>
|
1854
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-dot" title="graphene_vec4_dot ()">graphene_vec4_dot</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1855
|
+
</dt>
|
1856
|
+
<dd></dd>
|
1857
|
+
<dt>
|
1858
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-equal" title="graphene_vec4_equal ()">graphene_vec4_equal</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1859
|
+
</dt>
|
1860
|
+
<dd></dd>
|
1861
|
+
<dt>
|
1862
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-free" title="graphene_vec4_free ()">graphene_vec4_free</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1863
|
+
</dt>
|
1864
|
+
<dd></dd>
|
1865
|
+
<dt>
|
1866
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-get-w" title="graphene_vec4_get_w ()">graphene_vec4_get_w</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1867
|
+
</dt>
|
1868
|
+
<dd></dd>
|
1869
|
+
<dt>
|
1870
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-get-x" title="graphene_vec4_get_x ()">graphene_vec4_get_x</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1871
|
+
</dt>
|
1872
|
+
<dd></dd>
|
1873
|
+
<dt>
|
1874
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-get-xy" title="graphene_vec4_get_xy ()">graphene_vec4_get_xy</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1875
|
+
</dt>
|
1876
|
+
<dd></dd>
|
1877
|
+
<dt>
|
1878
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-get-xyz" title="graphene_vec4_get_xyz ()">graphene_vec4_get_xyz</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1879
|
+
</dt>
|
1880
|
+
<dd></dd>
|
1881
|
+
<dt>
|
1882
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-get-y" title="graphene_vec4_get_y ()">graphene_vec4_get_y</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1883
|
+
</dt>
|
1884
|
+
<dd></dd>
|
1885
|
+
<dt>
|
1886
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-get-z" title="graphene_vec4_get_z ()">graphene_vec4_get_z</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1887
|
+
</dt>
|
1888
|
+
<dd></dd>
|
1889
|
+
<dt>
|
1890
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-init" title="graphene_vec4_init ()">graphene_vec4_init</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1891
|
+
</dt>
|
1892
|
+
<dd></dd>
|
1893
|
+
<dt>
|
1894
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-init-from-float" title="graphene_vec4_init_from_float ()">graphene_vec4_init_from_float</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1895
|
+
</dt>
|
1896
|
+
<dd></dd>
|
1897
|
+
<dt>
|
1898
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-init-from-vec2" title="graphene_vec4_init_from_vec2 ()">graphene_vec4_init_from_vec2</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1899
|
+
</dt>
|
1900
|
+
<dd></dd>
|
1901
|
+
<dt>
|
1902
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-init-from-vec3" title="graphene_vec4_init_from_vec3 ()">graphene_vec4_init_from_vec3</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1903
|
+
</dt>
|
1904
|
+
<dd></dd>
|
1905
|
+
<dt>
|
1906
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-init-from-vec4" title="graphene_vec4_init_from_vec4 ()">graphene_vec4_init_from_vec4</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1907
|
+
</dt>
|
1908
|
+
<dd></dd>
|
1909
|
+
<dt>
|
1910
|
+
<a class="link" href="graphene-Vectors.html#GRAPHENE-VEC4-LEN:CAPS" title="GRAPHENE_VEC4_LEN">GRAPHENE_VEC4_LEN</a>, macro in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1911
|
+
</dt>
|
1912
|
+
<dd></dd>
|
1913
|
+
<dt>
|
1914
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-length" title="graphene_vec4_length ()">graphene_vec4_length</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1915
|
+
</dt>
|
1916
|
+
<dd></dd>
|
1917
|
+
<dt>
|
1918
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-max" title="graphene_vec4_max ()">graphene_vec4_max</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1919
|
+
</dt>
|
1920
|
+
<dd></dd>
|
1921
|
+
<dt>
|
1922
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-min" title="graphene_vec4_min ()">graphene_vec4_min</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1923
|
+
</dt>
|
1924
|
+
<dd></dd>
|
1925
|
+
<dt>
|
1926
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-multiply" title="graphene_vec4_multiply ()">graphene_vec4_multiply</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1927
|
+
</dt>
|
1928
|
+
<dd></dd>
|
1929
|
+
<dt>
|
1930
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-near" title="graphene_vec4_near ()">graphene_vec4_near</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1931
|
+
</dt>
|
1932
|
+
<dd></dd>
|
1933
|
+
<dt>
|
1934
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-negate" title="graphene_vec4_negate ()">graphene_vec4_negate</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1935
|
+
</dt>
|
1936
|
+
<dd></dd>
|
1937
|
+
<dt>
|
1938
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-normalize" title="graphene_vec4_normalize ()">graphene_vec4_normalize</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1939
|
+
</dt>
|
1940
|
+
<dd></dd>
|
1941
|
+
<dt>
|
1942
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-one" title="graphene_vec4_one ()">graphene_vec4_one</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1943
|
+
</dt>
|
1944
|
+
<dd></dd>
|
1945
|
+
<dt>
|
1946
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-scale" title="graphene_vec4_scale ()">graphene_vec4_scale</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1947
|
+
</dt>
|
1948
|
+
<dd></dd>
|
1949
|
+
<dt>
|
1950
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-subtract" title="graphene_vec4_subtract ()">graphene_vec4_subtract</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1951
|
+
</dt>
|
1952
|
+
<dd></dd>
|
1953
|
+
<dt>
|
1954
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-t" title="graphene_vec4_t">graphene_vec4_t</a>, struct in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1955
|
+
</dt>
|
1956
|
+
<dd></dd>
|
1957
|
+
<dt>
|
1958
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-to-float" title="graphene_vec4_to_float ()">graphene_vec4_to_float</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1959
|
+
</dt>
|
1960
|
+
<dd></dd>
|
1961
|
+
<dt>
|
1962
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-w-axis" title="graphene_vec4_w_axis ()">graphene_vec4_w_axis</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1963
|
+
</dt>
|
1964
|
+
<dd></dd>
|
1965
|
+
<dt>
|
1966
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-x-axis" title="graphene_vec4_x_axis ()">graphene_vec4_x_axis</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1967
|
+
</dt>
|
1968
|
+
<dd></dd>
|
1969
|
+
<dt>
|
1970
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-y-axis" title="graphene_vec4_y_axis ()">graphene_vec4_y_axis</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1971
|
+
</dt>
|
1972
|
+
<dd></dd>
|
1973
|
+
<dt>
|
1974
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-zero" title="graphene_vec4_zero ()">graphene_vec4_zero</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1975
|
+
</dt>
|
1976
|
+
<dd></dd>
|
1977
|
+
<dt>
|
1978
|
+
<a class="link" href="graphene-Vectors.html#graphene-vec4-z-axis" title="graphene_vec4_z_axis ()">graphene_vec4_z_axis</a>, function in <a class="link" href="graphene-Vectors.html" title="Vectors">Vectors</a>
|
1979
|
+
</dt>
|
1980
|
+
<dd></dd>
|
1981
|
+
</div>
|
1982
|
+
<div class="footer">
|
1983
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
1984
|
+
</body>
|
1985
|
+
</html>
|