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
Binary file
|
@@ -0,0 +1,107 @@
|
|
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>Graphene Reference Manual: 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="next" href="ch01.html" title="Graphene">
|
9
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
10
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
11
|
+
</head>
|
12
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
13
|
+
<div class="book">
|
14
|
+
<div class="titlepage">
|
15
|
+
<div>
|
16
|
+
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Graphene Reference Manual</p></th></tr></table></div>
|
17
|
+
<div>
|
18
|
+
<p class="releaseinfo">
|
19
|
+
</p>
|
20
|
+
<p>This document is the API reference for the Graphene library.</p>
|
21
|
+
<p class="releaseinfo">
|
22
|
+
</p>
|
23
|
+
<p>
|
24
|
+
The latest version of Graphene, as well as the latest version of
|
25
|
+
this API reference, is <a class="ulink" href="http://ebassi.github.com/graphene" target="_top">available online</a>.
|
26
|
+
</p>
|
27
|
+
<p class="releaseinfo">
|
28
|
+
</p>
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
<hr>
|
32
|
+
</div>
|
33
|
+
<div class="toc"><dl class="toc">
|
34
|
+
<dt><span class="chapter"><a href="ch01.html">Graphene</a></span></dt>
|
35
|
+
<dd><dl>
|
36
|
+
<dt>
|
37
|
+
<span class="refentrytitle"><a href="graphene-Point.html">Point</a></span><span class="refpurpose"> — A point with 2 coordinates</span>
|
38
|
+
</dt>
|
39
|
+
<dt>
|
40
|
+
<span class="refentrytitle"><a href="graphene-Point3D.html">Point3D</a></span><span class="refpurpose"> — A point with 3 coordinates</span>
|
41
|
+
</dt>
|
42
|
+
<dt>
|
43
|
+
<span class="refentrytitle"><a href="graphene-Size.html">Size</a></span><span class="refpurpose"> — Size representation</span>
|
44
|
+
</dt>
|
45
|
+
<dt>
|
46
|
+
<span class="refentrytitle"><a href="graphene-Rectangle.html">Rectangle</a></span><span class="refpurpose"> — Rectangular shape type</span>
|
47
|
+
</dt>
|
48
|
+
<dt>
|
49
|
+
<span class="refentrytitle"><a href="graphene-Quad.html">Quad</a></span><span class="refpurpose"> — Four-vertex quadrilateral</span>
|
50
|
+
</dt>
|
51
|
+
<dt>
|
52
|
+
<span class="refentrytitle"><a href="graphene-Triangle.html">Triangle</a></span><span class="refpurpose"> — A triangle described by 3D points</span>
|
53
|
+
</dt>
|
54
|
+
<dt>
|
55
|
+
<span class="refentrytitle"><a href="graphene-Box.html">Box</a></span><span class="refpurpose"> — Axis-aligned bounding box</span>
|
56
|
+
</dt>
|
57
|
+
<dt>
|
58
|
+
<span class="refentrytitle"><a href="graphene-Sphere.html">Sphere</a></span><span class="refpurpose"> — A sphere</span>
|
59
|
+
</dt>
|
60
|
+
<dt>
|
61
|
+
<span class="refentrytitle"><a href="graphene-Frustum.html">Frustum</a></span><span class="refpurpose"> — A 3D field of view</span>
|
62
|
+
</dt>
|
63
|
+
<dt>
|
64
|
+
<span class="refentrytitle"><a href="graphene-SIMD-vector.html">SIMD vector</a></span><span class="refpurpose"> — Low level floating point 4-sized vector</span>
|
65
|
+
</dt>
|
66
|
+
<dt>
|
67
|
+
<span class="refentrytitle"><a href="graphene-SIMD-matrix.html">SIMD matrix</a></span><span class="refpurpose"> — Low level floating point 4 by 4 matrix</span>
|
68
|
+
</dt>
|
69
|
+
<dt>
|
70
|
+
<span class="refentrytitle"><a href="graphene-Vectors.html">Vectors</a></span><span class="refpurpose"> — Vectors in 2, 3, and 4 dimensions</span>
|
71
|
+
</dt>
|
72
|
+
<dt>
|
73
|
+
<span class="refentrytitle"><a href="graphene-Matrix.html">Matrix</a></span><span class="refpurpose"> — 4x4 matrices</span>
|
74
|
+
</dt>
|
75
|
+
<dt>
|
76
|
+
<span class="refentrytitle"><a href="graphene-Euler.html">Euler</a></span><span class="refpurpose"> — Euler angles</span>
|
77
|
+
</dt>
|
78
|
+
<dt>
|
79
|
+
<span class="refentrytitle"><a href="graphene-Quaternion.html">Quaternion</a></span><span class="refpurpose"> — Quaternion operations</span>
|
80
|
+
</dt>
|
81
|
+
<dt>
|
82
|
+
<span class="refentrytitle"><a href="graphene-Plane.html">Plane</a></span><span class="refpurpose"> — A plane in 3D space</span>
|
83
|
+
</dt>
|
84
|
+
<dt>
|
85
|
+
<span class="refentrytitle"><a href="graphene-Ray.html">Ray</a></span><span class="refpurpose"> — A ray emitted from an origin in a given direction</span>
|
86
|
+
</dt>
|
87
|
+
<dt>
|
88
|
+
<span class="refentrytitle"><a href="graphene-Versioning-information.html">Versioning information</a></span><span class="refpurpose"> — Detemining the version of Graphene in use</span>
|
89
|
+
</dt>
|
90
|
+
<dt>
|
91
|
+
<span class="refentrytitle"><a href="graphene-GObject-integration.html">GObject integration</a></span><span class="refpurpose"> — Types for GObject properties and signals</span>
|
92
|
+
</dt>
|
93
|
+
</dl></dd>
|
94
|
+
<dt><span class="chapter"><a href="object-tree.html">Object Hierarchy</a></span></dt>
|
95
|
+
<dt><span class="index"><a href="api-index.html">API Index</a></span></dt>
|
96
|
+
<dt><span class="index"><a href="deprecated-api-index.html">Index of deprecated API</a></span></dt>
|
97
|
+
<dt><span class="index"><a href="ix03.html">Index of new symbols in 1.0</a></span></dt>
|
98
|
+
<dt><span class="index"><a href="ix04.html">Index of new symbols in 1.2</a></span></dt>
|
99
|
+
<dt><span class="index"><a href="ix05.html">Index of new symbols in 1.4</a></span></dt>
|
100
|
+
<dt><span class="index"><a href="ix06.html">Index of new symbols in 1.6</a></span></dt>
|
101
|
+
<dt><span class="glossary"><a href="annotation-glossary.html">Annotation Glossary</a></span></dt>
|
102
|
+
</dl></div>
|
103
|
+
</div>
|
104
|
+
<div class="footer">
|
105
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
106
|
+
</body>
|
107
|
+
</html>
|
@@ -0,0 +1,1313 @@
|
|
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>Index of new symbols in 1.0: 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="deprecated-api-index.html" title="Index of deprecated API">
|
10
|
+
<link rel="next" href="ix04.html" title="Index of new symbols in 1.2">
|
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="#idxM">M</a>
|
17
|
+
<span class="dim">|</span>
|
18
|
+
<a class="shortcut" href="#idxP">P</a>
|
19
|
+
<span class="dim">|</span>
|
20
|
+
<a class="shortcut" href="#idxQ">Q</a>
|
21
|
+
<span class="dim">|</span>
|
22
|
+
<a class="shortcut" href="#idxR">R</a>
|
23
|
+
<span class="dim">|</span>
|
24
|
+
<a class="shortcut" href="#idxS">S</a>
|
25
|
+
<span class="dim">|</span>
|
26
|
+
<a class="shortcut" href="#idxV">V</a></span></td>
|
27
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
28
|
+
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
29
|
+
<td><a accesskey="p" href="deprecated-api-index.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
30
|
+
<td><a accesskey="n" href="ix04.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
31
|
+
</tr></table>
|
32
|
+
<div class="index">
|
33
|
+
<div class="titlepage"><div><div><h1 class="title">
|
34
|
+
<a name="id-1.6"></a>Index of new symbols in 1.0</h1></div></div></div>
|
35
|
+
<a name="idx"></a><a name="idxM"></a><h3 class="title">M</h3>
|
36
|
+
<dt>
|
37
|
+
<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>
|
38
|
+
</dt>
|
39
|
+
<dd></dd>
|
40
|
+
<dt>
|
41
|
+
<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>
|
42
|
+
</dt>
|
43
|
+
<dd></dd>
|
44
|
+
<dt>
|
45
|
+
<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>
|
46
|
+
</dt>
|
47
|
+
<dd></dd>
|
48
|
+
<dt>
|
49
|
+
<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>
|
50
|
+
</dt>
|
51
|
+
<dd></dd>
|
52
|
+
<dt>
|
53
|
+
<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>
|
54
|
+
</dt>
|
55
|
+
<dd></dd>
|
56
|
+
<dt>
|
57
|
+
<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>
|
58
|
+
</dt>
|
59
|
+
<dd></dd>
|
60
|
+
<dt>
|
61
|
+
<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>
|
62
|
+
</dt>
|
63
|
+
<dd></dd>
|
64
|
+
<dt>
|
65
|
+
<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>
|
66
|
+
</dt>
|
67
|
+
<dd></dd>
|
68
|
+
<dt>
|
69
|
+
<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>
|
70
|
+
</dt>
|
71
|
+
<dd></dd>
|
72
|
+
<dt>
|
73
|
+
<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>
|
74
|
+
</dt>
|
75
|
+
<dd></dd>
|
76
|
+
<dt>
|
77
|
+
<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>
|
78
|
+
</dt>
|
79
|
+
<dd></dd>
|
80
|
+
<dt>
|
81
|
+
<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>
|
82
|
+
</dt>
|
83
|
+
<dd></dd>
|
84
|
+
<dt>
|
85
|
+
<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>
|
86
|
+
</dt>
|
87
|
+
<dd></dd>
|
88
|
+
<dt>
|
89
|
+
<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>
|
90
|
+
</dt>
|
91
|
+
<dd></dd>
|
92
|
+
<dt>
|
93
|
+
<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>
|
94
|
+
</dt>
|
95
|
+
<dd></dd>
|
96
|
+
<dt>
|
97
|
+
<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>
|
98
|
+
</dt>
|
99
|
+
<dd></dd>
|
100
|
+
<dt>
|
101
|
+
<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>
|
102
|
+
</dt>
|
103
|
+
<dd></dd>
|
104
|
+
<dt>
|
105
|
+
<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>
|
106
|
+
</dt>
|
107
|
+
<dd></dd>
|
108
|
+
<dt>
|
109
|
+
<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>
|
110
|
+
</dt>
|
111
|
+
<dd></dd>
|
112
|
+
<dt>
|
113
|
+
<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>
|
114
|
+
</dt>
|
115
|
+
<dd></dd>
|
116
|
+
<dt>
|
117
|
+
<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>
|
118
|
+
</dt>
|
119
|
+
<dd></dd>
|
120
|
+
<dt>
|
121
|
+
<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>
|
122
|
+
</dt>
|
123
|
+
<dd></dd>
|
124
|
+
<dt>
|
125
|
+
<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>
|
126
|
+
</dt>
|
127
|
+
<dd></dd>
|
128
|
+
<dt>
|
129
|
+
<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>
|
130
|
+
</dt>
|
131
|
+
<dd></dd>
|
132
|
+
<dt>
|
133
|
+
<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>
|
134
|
+
</dt>
|
135
|
+
<dd></dd>
|
136
|
+
<dt>
|
137
|
+
<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>
|
138
|
+
</dt>
|
139
|
+
<dd></dd>
|
140
|
+
<dt>
|
141
|
+
<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>
|
142
|
+
</dt>
|
143
|
+
<dd></dd>
|
144
|
+
<dt>
|
145
|
+
<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>
|
146
|
+
</dt>
|
147
|
+
<dd></dd>
|
148
|
+
<dt>
|
149
|
+
<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>
|
150
|
+
</dt>
|
151
|
+
<dd></dd>
|
152
|
+
<dt>
|
153
|
+
<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>
|
154
|
+
</dt>
|
155
|
+
<dd></dd>
|
156
|
+
<dt>
|
157
|
+
<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>
|
158
|
+
</dt>
|
159
|
+
<dd></dd>
|
160
|
+
<dt>
|
161
|
+
<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>
|
162
|
+
</dt>
|
163
|
+
<dd></dd>
|
164
|
+
<dt>
|
165
|
+
<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>
|
166
|
+
</dt>
|
167
|
+
<dd></dd>
|
168
|
+
<dt>
|
169
|
+
<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>
|
170
|
+
</dt>
|
171
|
+
<dd></dd>
|
172
|
+
<dt>
|
173
|
+
<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>
|
174
|
+
</dt>
|
175
|
+
<dd></dd>
|
176
|
+
<dt>
|
177
|
+
<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>
|
178
|
+
</dt>
|
179
|
+
<dd></dd>
|
180
|
+
<dt>
|
181
|
+
<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>
|
182
|
+
</dt>
|
183
|
+
<dd></dd>
|
184
|
+
<dt>
|
185
|
+
<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>
|
186
|
+
</dt>
|
187
|
+
<dd></dd>
|
188
|
+
<dt>
|
189
|
+
<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>
|
190
|
+
</dt>
|
191
|
+
<dd></dd>
|
192
|
+
<dt>
|
193
|
+
<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>
|
194
|
+
</dt>
|
195
|
+
<dd></dd>
|
196
|
+
<dt>
|
197
|
+
<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>
|
198
|
+
</dt>
|
199
|
+
<dd></dd>
|
200
|
+
<dt>
|
201
|
+
<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>
|
202
|
+
</dt>
|
203
|
+
<dd></dd>
|
204
|
+
<dt>
|
205
|
+
<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>
|
206
|
+
</dt>
|
207
|
+
<dd></dd>
|
208
|
+
<dt>
|
209
|
+
<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>
|
210
|
+
</dt>
|
211
|
+
<dd></dd>
|
212
|
+
<dt>
|
213
|
+
<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>
|
214
|
+
</dt>
|
215
|
+
<dd></dd>
|
216
|
+
<dt>
|
217
|
+
<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>
|
218
|
+
</dt>
|
219
|
+
<dd></dd>
|
220
|
+
<dt>
|
221
|
+
<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>
|
222
|
+
</dt>
|
223
|
+
<dd></dd>
|
224
|
+
<dt>
|
225
|
+
<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>
|
226
|
+
</dt>
|
227
|
+
<dd></dd>
|
228
|
+
<dt>
|
229
|
+
<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>
|
230
|
+
</dt>
|
231
|
+
<dd></dd>
|
232
|
+
<dt>
|
233
|
+
<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>
|
234
|
+
</dt>
|
235
|
+
<dd></dd>
|
236
|
+
<dt>
|
237
|
+
<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>
|
238
|
+
</dt>
|
239
|
+
<dd></dd>
|
240
|
+
<dt>
|
241
|
+
<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>
|
242
|
+
</dt>
|
243
|
+
<dd></dd>
|
244
|
+
<dt>
|
245
|
+
<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>
|
246
|
+
</dt>
|
247
|
+
<dd></dd>
|
248
|
+
<dt>
|
249
|
+
<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>
|
250
|
+
</dt>
|
251
|
+
<dd></dd>
|
252
|
+
<a name="idxP"></a><h3 class="title">P</h3>
|
253
|
+
<dt>
|
254
|
+
<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>
|
255
|
+
</dt>
|
256
|
+
<dd></dd>
|
257
|
+
<dt>
|
258
|
+
<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>
|
259
|
+
</dt>
|
260
|
+
<dd></dd>
|
261
|
+
<dt>
|
262
|
+
<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>
|
263
|
+
</dt>
|
264
|
+
<dd></dd>
|
265
|
+
<dt>
|
266
|
+
<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>
|
267
|
+
</dt>
|
268
|
+
<dd></dd>
|
269
|
+
<dt>
|
270
|
+
<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>
|
271
|
+
</dt>
|
272
|
+
<dd></dd>
|
273
|
+
<dt>
|
274
|
+
<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>
|
275
|
+
</dt>
|
276
|
+
<dd></dd>
|
277
|
+
<dt>
|
278
|
+
<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>
|
279
|
+
</dt>
|
280
|
+
<dd></dd>
|
281
|
+
<dt>
|
282
|
+
<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>
|
283
|
+
</dt>
|
284
|
+
<dd></dd>
|
285
|
+
<dt>
|
286
|
+
<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>
|
287
|
+
</dt>
|
288
|
+
<dd></dd>
|
289
|
+
<dt>
|
290
|
+
<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>
|
291
|
+
</dt>
|
292
|
+
<dd></dd>
|
293
|
+
<dt>
|
294
|
+
<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>
|
295
|
+
</dt>
|
296
|
+
<dd></dd>
|
297
|
+
<dt>
|
298
|
+
<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>
|
299
|
+
</dt>
|
300
|
+
<dd></dd>
|
301
|
+
<dt>
|
302
|
+
<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>
|
303
|
+
</dt>
|
304
|
+
<dd></dd>
|
305
|
+
<dt>
|
306
|
+
<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>
|
307
|
+
</dt>
|
308
|
+
<dd></dd>
|
309
|
+
<dt>
|
310
|
+
<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>
|
311
|
+
</dt>
|
312
|
+
<dd></dd>
|
313
|
+
<dt>
|
314
|
+
<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>
|
315
|
+
</dt>
|
316
|
+
<dd></dd>
|
317
|
+
<dt>
|
318
|
+
<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>
|
319
|
+
</dt>
|
320
|
+
<dd></dd>
|
321
|
+
<dt>
|
322
|
+
<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>
|
323
|
+
</dt>
|
324
|
+
<dd></dd>
|
325
|
+
<dt>
|
326
|
+
<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>
|
327
|
+
</dt>
|
328
|
+
<dd></dd>
|
329
|
+
<dt>
|
330
|
+
<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>
|
331
|
+
</dt>
|
332
|
+
<dd></dd>
|
333
|
+
<dt>
|
334
|
+
<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>
|
335
|
+
</dt>
|
336
|
+
<dd></dd>
|
337
|
+
<dt>
|
338
|
+
<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>
|
339
|
+
</dt>
|
340
|
+
<dd></dd>
|
341
|
+
<dt>
|
342
|
+
<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>
|
343
|
+
</dt>
|
344
|
+
<dd></dd>
|
345
|
+
<dt>
|
346
|
+
<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>
|
347
|
+
</dt>
|
348
|
+
<dd></dd>
|
349
|
+
<dt>
|
350
|
+
<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>
|
351
|
+
</dt>
|
352
|
+
<dd></dd>
|
353
|
+
<dt>
|
354
|
+
<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>
|
355
|
+
</dt>
|
356
|
+
<dd></dd>
|
357
|
+
<dt>
|
358
|
+
<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>
|
359
|
+
</dt>
|
360
|
+
<dd></dd>
|
361
|
+
<dt>
|
362
|
+
<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>
|
363
|
+
</dt>
|
364
|
+
<dd></dd>
|
365
|
+
<dt>
|
366
|
+
<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>
|
367
|
+
</dt>
|
368
|
+
<dd></dd>
|
369
|
+
<dt>
|
370
|
+
<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>
|
371
|
+
</dt>
|
372
|
+
<dd></dd>
|
373
|
+
<a name="idxQ"></a><h3 class="title">Q</h3>
|
374
|
+
<dt>
|
375
|
+
<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>
|
376
|
+
</dt>
|
377
|
+
<dd></dd>
|
378
|
+
<dt>
|
379
|
+
<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>
|
380
|
+
</dt>
|
381
|
+
<dd></dd>
|
382
|
+
<dt>
|
383
|
+
<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>
|
384
|
+
</dt>
|
385
|
+
<dd></dd>
|
386
|
+
<dt>
|
387
|
+
<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>
|
388
|
+
</dt>
|
389
|
+
<dd></dd>
|
390
|
+
<dt>
|
391
|
+
<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>
|
392
|
+
</dt>
|
393
|
+
<dd></dd>
|
394
|
+
<dt>
|
395
|
+
<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>
|
396
|
+
</dt>
|
397
|
+
<dd></dd>
|
398
|
+
<dt>
|
399
|
+
<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>
|
400
|
+
</dt>
|
401
|
+
<dd></dd>
|
402
|
+
<dt>
|
403
|
+
<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>
|
404
|
+
</dt>
|
405
|
+
<dd></dd>
|
406
|
+
<dt>
|
407
|
+
<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>
|
408
|
+
</dt>
|
409
|
+
<dd></dd>
|
410
|
+
<dt>
|
411
|
+
<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>
|
412
|
+
</dt>
|
413
|
+
<dd></dd>
|
414
|
+
<dt>
|
415
|
+
<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>
|
416
|
+
</dt>
|
417
|
+
<dd></dd>
|
418
|
+
<dt>
|
419
|
+
<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>
|
420
|
+
</dt>
|
421
|
+
<dd></dd>
|
422
|
+
<dt>
|
423
|
+
<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>
|
424
|
+
</dt>
|
425
|
+
<dd></dd>
|
426
|
+
<dt>
|
427
|
+
<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>
|
428
|
+
</dt>
|
429
|
+
<dd></dd>
|
430
|
+
<dt>
|
431
|
+
<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>
|
432
|
+
</dt>
|
433
|
+
<dd></dd>
|
434
|
+
<dt>
|
435
|
+
<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>
|
436
|
+
</dt>
|
437
|
+
<dd></dd>
|
438
|
+
<dt>
|
439
|
+
<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>
|
440
|
+
</dt>
|
441
|
+
<dd></dd>
|
442
|
+
<dt>
|
443
|
+
<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>
|
444
|
+
</dt>
|
445
|
+
<dd></dd>
|
446
|
+
<dt>
|
447
|
+
<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>
|
448
|
+
</dt>
|
449
|
+
<dd></dd>
|
450
|
+
<dt>
|
451
|
+
<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>
|
452
|
+
</dt>
|
453
|
+
<dd></dd>
|
454
|
+
<dt>
|
455
|
+
<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>
|
456
|
+
</dt>
|
457
|
+
<dd></dd>
|
458
|
+
<dt>
|
459
|
+
<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>
|
460
|
+
</dt>
|
461
|
+
<dd></dd>
|
462
|
+
<dt>
|
463
|
+
<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>
|
464
|
+
</dt>
|
465
|
+
<dd></dd>
|
466
|
+
<dt>
|
467
|
+
<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>
|
468
|
+
</dt>
|
469
|
+
<dd></dd>
|
470
|
+
<dt>
|
471
|
+
<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>
|
472
|
+
</dt>
|
473
|
+
<dd></dd>
|
474
|
+
<dt>
|
475
|
+
<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>
|
476
|
+
</dt>
|
477
|
+
<dd></dd>
|
478
|
+
<dt>
|
479
|
+
<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>
|
480
|
+
</dt>
|
481
|
+
<dd></dd>
|
482
|
+
<a name="idxR"></a><h3 class="title">R</h3>
|
483
|
+
<dt>
|
484
|
+
<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>
|
485
|
+
</dt>
|
486
|
+
<dd></dd>
|
487
|
+
<dt>
|
488
|
+
<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>
|
489
|
+
</dt>
|
490
|
+
<dd></dd>
|
491
|
+
<dt>
|
492
|
+
<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>
|
493
|
+
</dt>
|
494
|
+
<dd></dd>
|
495
|
+
<dt>
|
496
|
+
<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>
|
497
|
+
</dt>
|
498
|
+
<dd></dd>
|
499
|
+
<dt>
|
500
|
+
<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>
|
501
|
+
</dt>
|
502
|
+
<dd></dd>
|
503
|
+
<dt>
|
504
|
+
<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>
|
505
|
+
</dt>
|
506
|
+
<dd></dd>
|
507
|
+
<dt>
|
508
|
+
<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>
|
509
|
+
</dt>
|
510
|
+
<dd></dd>
|
511
|
+
<dt>
|
512
|
+
<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>
|
513
|
+
</dt>
|
514
|
+
<dd></dd>
|
515
|
+
<dt>
|
516
|
+
<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>
|
517
|
+
</dt>
|
518
|
+
<dd></dd>
|
519
|
+
<dt>
|
520
|
+
<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>
|
521
|
+
</dt>
|
522
|
+
<dd></dd>
|
523
|
+
<dt>
|
524
|
+
<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>
|
525
|
+
</dt>
|
526
|
+
<dd></dd>
|
527
|
+
<dt>
|
528
|
+
<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>
|
529
|
+
</dt>
|
530
|
+
<dd></dd>
|
531
|
+
<dt>
|
532
|
+
<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>
|
533
|
+
</dt>
|
534
|
+
<dd></dd>
|
535
|
+
<dt>
|
536
|
+
<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>
|
537
|
+
</dt>
|
538
|
+
<dd></dd>
|
539
|
+
<dt>
|
540
|
+
<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>
|
541
|
+
</dt>
|
542
|
+
<dd></dd>
|
543
|
+
<dt>
|
544
|
+
<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>
|
545
|
+
</dt>
|
546
|
+
<dd></dd>
|
547
|
+
<dt>
|
548
|
+
<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>
|
549
|
+
</dt>
|
550
|
+
<dd></dd>
|
551
|
+
<dt>
|
552
|
+
<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>
|
553
|
+
</dt>
|
554
|
+
<dd></dd>
|
555
|
+
<dt>
|
556
|
+
<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>
|
557
|
+
</dt>
|
558
|
+
<dd></dd>
|
559
|
+
<dt>
|
560
|
+
<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>
|
561
|
+
</dt>
|
562
|
+
<dd></dd>
|
563
|
+
<dt>
|
564
|
+
<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>
|
565
|
+
</dt>
|
566
|
+
<dd></dd>
|
567
|
+
<dt>
|
568
|
+
<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>
|
569
|
+
</dt>
|
570
|
+
<dd></dd>
|
571
|
+
<dt>
|
572
|
+
<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>
|
573
|
+
</dt>
|
574
|
+
<dd></dd>
|
575
|
+
<dt>
|
576
|
+
<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>
|
577
|
+
</dt>
|
578
|
+
<dd></dd>
|
579
|
+
<dt>
|
580
|
+
<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>
|
581
|
+
</dt>
|
582
|
+
<dd></dd>
|
583
|
+
<a name="idxS"></a><h3 class="title">S</h3>
|
584
|
+
<dt>
|
585
|
+
<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>
|
586
|
+
</dt>
|
587
|
+
<dd></dd>
|
588
|
+
<dt>
|
589
|
+
<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>
|
590
|
+
</dt>
|
591
|
+
<dd></dd>
|
592
|
+
<dt>
|
593
|
+
<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>
|
594
|
+
</dt>
|
595
|
+
<dd></dd>
|
596
|
+
<dt>
|
597
|
+
<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>
|
598
|
+
</dt>
|
599
|
+
<dd></dd>
|
600
|
+
<dt>
|
601
|
+
<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>
|
602
|
+
</dt>
|
603
|
+
<dd></dd>
|
604
|
+
<dt>
|
605
|
+
<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>
|
606
|
+
</dt>
|
607
|
+
<dd></dd>
|
608
|
+
<dt>
|
609
|
+
<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>
|
610
|
+
</dt>
|
611
|
+
<dd></dd>
|
612
|
+
<dt>
|
613
|
+
<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>
|
614
|
+
</dt>
|
615
|
+
<dd></dd>
|
616
|
+
<dt>
|
617
|
+
<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>
|
618
|
+
</dt>
|
619
|
+
<dd></dd>
|
620
|
+
<dt>
|
621
|
+
<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>
|
622
|
+
</dt>
|
623
|
+
<dd></dd>
|
624
|
+
<dt>
|
625
|
+
<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>
|
626
|
+
</dt>
|
627
|
+
<dd></dd>
|
628
|
+
<dt>
|
629
|
+
<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>
|
630
|
+
</dt>
|
631
|
+
<dd></dd>
|
632
|
+
<dt>
|
633
|
+
<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>
|
634
|
+
</dt>
|
635
|
+
<dd></dd>
|
636
|
+
<dt>
|
637
|
+
<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>
|
638
|
+
</dt>
|
639
|
+
<dd></dd>
|
640
|
+
<dt>
|
641
|
+
<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>
|
642
|
+
</dt>
|
643
|
+
<dd></dd>
|
644
|
+
<dt>
|
645
|
+
<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>
|
646
|
+
</dt>
|
647
|
+
<dd></dd>
|
648
|
+
<dt>
|
649
|
+
<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>
|
650
|
+
</dt>
|
651
|
+
<dd></dd>
|
652
|
+
<dt>
|
653
|
+
<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>
|
654
|
+
</dt>
|
655
|
+
<dd></dd>
|
656
|
+
<dt>
|
657
|
+
<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>
|
658
|
+
</dt>
|
659
|
+
<dd></dd>
|
660
|
+
<dt>
|
661
|
+
<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>
|
662
|
+
</dt>
|
663
|
+
<dd></dd>
|
664
|
+
<dt>
|
665
|
+
<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>
|
666
|
+
</dt>
|
667
|
+
<dd></dd>
|
668
|
+
<dt>
|
669
|
+
<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>
|
670
|
+
</dt>
|
671
|
+
<dd></dd>
|
672
|
+
<dt>
|
673
|
+
<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>
|
674
|
+
</dt>
|
675
|
+
<dd></dd>
|
676
|
+
<dt>
|
677
|
+
<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>
|
678
|
+
</dt>
|
679
|
+
<dd></dd>
|
680
|
+
<dt>
|
681
|
+
<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>
|
682
|
+
</dt>
|
683
|
+
<dd></dd>
|
684
|
+
<dt>
|
685
|
+
<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>
|
686
|
+
</dt>
|
687
|
+
<dd></dd>
|
688
|
+
<dt>
|
689
|
+
<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>
|
690
|
+
</dt>
|
691
|
+
<dd></dd>
|
692
|
+
<dt>
|
693
|
+
<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>
|
694
|
+
</dt>
|
695
|
+
<dd></dd>
|
696
|
+
<dt>
|
697
|
+
<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>
|
698
|
+
</dt>
|
699
|
+
<dd></dd>
|
700
|
+
<dt>
|
701
|
+
<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>
|
702
|
+
</dt>
|
703
|
+
<dd></dd>
|
704
|
+
<dt>
|
705
|
+
<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>
|
706
|
+
</dt>
|
707
|
+
<dd></dd>
|
708
|
+
<dt>
|
709
|
+
<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>
|
710
|
+
</dt>
|
711
|
+
<dd></dd>
|
712
|
+
<dt>
|
713
|
+
<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>
|
714
|
+
</dt>
|
715
|
+
<dd></dd>
|
716
|
+
<dt>
|
717
|
+
<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>
|
718
|
+
</dt>
|
719
|
+
<dd></dd>
|
720
|
+
<dt>
|
721
|
+
<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>
|
722
|
+
</dt>
|
723
|
+
<dd></dd>
|
724
|
+
<dt>
|
725
|
+
<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>
|
726
|
+
</dt>
|
727
|
+
<dd></dd>
|
728
|
+
<dt>
|
729
|
+
<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>
|
730
|
+
</dt>
|
731
|
+
<dd></dd>
|
732
|
+
<dt>
|
733
|
+
<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>
|
734
|
+
</dt>
|
735
|
+
<dd></dd>
|
736
|
+
<dt>
|
737
|
+
<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>
|
738
|
+
</dt>
|
739
|
+
<dd></dd>
|
740
|
+
<dt>
|
741
|
+
<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>
|
742
|
+
</dt>
|
743
|
+
<dd></dd>
|
744
|
+
<dt>
|
745
|
+
<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>
|
746
|
+
</dt>
|
747
|
+
<dd></dd>
|
748
|
+
<dt>
|
749
|
+
<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>
|
750
|
+
</dt>
|
751
|
+
<dd></dd>
|
752
|
+
<dt>
|
753
|
+
<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>
|
754
|
+
</dt>
|
755
|
+
<dd></dd>
|
756
|
+
<dt>
|
757
|
+
<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>
|
758
|
+
</dt>
|
759
|
+
<dd></dd>
|
760
|
+
<dt>
|
761
|
+
<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>
|
762
|
+
</dt>
|
763
|
+
<dd></dd>
|
764
|
+
<dt>
|
765
|
+
<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>
|
766
|
+
</dt>
|
767
|
+
<dd></dd>
|
768
|
+
<dt>
|
769
|
+
<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>
|
770
|
+
</dt>
|
771
|
+
<dd></dd>
|
772
|
+
<dt>
|
773
|
+
<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>
|
774
|
+
</dt>
|
775
|
+
<dd></dd>
|
776
|
+
<dt>
|
777
|
+
<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>
|
778
|
+
</dt>
|
779
|
+
<dd></dd>
|
780
|
+
<dt>
|
781
|
+
<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>
|
782
|
+
</dt>
|
783
|
+
<dd></dd>
|
784
|
+
<dt>
|
785
|
+
<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>
|
786
|
+
</dt>
|
787
|
+
<dd></dd>
|
788
|
+
<dt>
|
789
|
+
<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>
|
790
|
+
</dt>
|
791
|
+
<dd></dd>
|
792
|
+
<dt>
|
793
|
+
<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>
|
794
|
+
</dt>
|
795
|
+
<dd></dd>
|
796
|
+
<dt>
|
797
|
+
<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>
|
798
|
+
</dt>
|
799
|
+
<dd></dd>
|
800
|
+
<dt>
|
801
|
+
<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>
|
802
|
+
</dt>
|
803
|
+
<dd></dd>
|
804
|
+
<dt>
|
805
|
+
<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>
|
806
|
+
</dt>
|
807
|
+
<dd></dd>
|
808
|
+
<dt>
|
809
|
+
<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>
|
810
|
+
</dt>
|
811
|
+
<dd></dd>
|
812
|
+
<dt>
|
813
|
+
<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>
|
814
|
+
</dt>
|
815
|
+
<dd></dd>
|
816
|
+
<dt>
|
817
|
+
<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>
|
818
|
+
</dt>
|
819
|
+
<dd></dd>
|
820
|
+
<dt>
|
821
|
+
<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>
|
822
|
+
</dt>
|
823
|
+
<dd></dd>
|
824
|
+
<dt>
|
825
|
+
<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>
|
826
|
+
</dt>
|
827
|
+
<dd></dd>
|
828
|
+
<dt>
|
829
|
+
<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>
|
830
|
+
</dt>
|
831
|
+
<dd></dd>
|
832
|
+
<dt>
|
833
|
+
<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>
|
834
|
+
</dt>
|
835
|
+
<dd></dd>
|
836
|
+
<dt>
|
837
|
+
<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>
|
838
|
+
</dt>
|
839
|
+
<dd></dd>
|
840
|
+
<dt>
|
841
|
+
<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>
|
842
|
+
</dt>
|
843
|
+
<dd></dd>
|
844
|
+
<dt>
|
845
|
+
<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>
|
846
|
+
</dt>
|
847
|
+
<dd></dd>
|
848
|
+
<dt>
|
849
|
+
<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>
|
850
|
+
</dt>
|
851
|
+
<dd></dd>
|
852
|
+
<dt>
|
853
|
+
<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>
|
854
|
+
</dt>
|
855
|
+
<dd></dd>
|
856
|
+
<dt>
|
857
|
+
<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>
|
858
|
+
</dt>
|
859
|
+
<dd></dd>
|
860
|
+
<dt>
|
861
|
+
<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>
|
862
|
+
</dt>
|
863
|
+
<dd></dd>
|
864
|
+
<dt>
|
865
|
+
<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>
|
866
|
+
</dt>
|
867
|
+
<dd></dd>
|
868
|
+
<dt>
|
869
|
+
<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>
|
870
|
+
</dt>
|
871
|
+
<dd></dd>
|
872
|
+
<dt>
|
873
|
+
<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>
|
874
|
+
</dt>
|
875
|
+
<dd></dd>
|
876
|
+
<dt>
|
877
|
+
<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>
|
878
|
+
</dt>
|
879
|
+
<dd></dd>
|
880
|
+
<dt>
|
881
|
+
<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>
|
882
|
+
</dt>
|
883
|
+
<dd></dd>
|
884
|
+
<dt>
|
885
|
+
<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>
|
886
|
+
</dt>
|
887
|
+
<dd></dd>
|
888
|
+
<dt>
|
889
|
+
<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>
|
890
|
+
</dt>
|
891
|
+
<dd></dd>
|
892
|
+
<dt>
|
893
|
+
<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>
|
894
|
+
</dt>
|
895
|
+
<dd></dd>
|
896
|
+
<dt>
|
897
|
+
<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>
|
898
|
+
</dt>
|
899
|
+
<dd></dd>
|
900
|
+
<dt>
|
901
|
+
<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>
|
902
|
+
</dt>
|
903
|
+
<dd></dd>
|
904
|
+
<dt>
|
905
|
+
<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>
|
906
|
+
</dt>
|
907
|
+
<dd></dd>
|
908
|
+
<dt>
|
909
|
+
<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>
|
910
|
+
</dt>
|
911
|
+
<dd></dd>
|
912
|
+
<dt>
|
913
|
+
<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>
|
914
|
+
</dt>
|
915
|
+
<dd></dd>
|
916
|
+
<dt>
|
917
|
+
<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>
|
918
|
+
</dt>
|
919
|
+
<dd></dd>
|
920
|
+
<dt>
|
921
|
+
<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>
|
922
|
+
</dt>
|
923
|
+
<dd></dd>
|
924
|
+
<dt>
|
925
|
+
<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>
|
926
|
+
</dt>
|
927
|
+
<dd></dd>
|
928
|
+
<dt>
|
929
|
+
<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>
|
930
|
+
</dt>
|
931
|
+
<dd></dd>
|
932
|
+
<dt>
|
933
|
+
<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>
|
934
|
+
</dt>
|
935
|
+
<dd></dd>
|
936
|
+
<dt>
|
937
|
+
<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>
|
938
|
+
</dt>
|
939
|
+
<dd></dd>
|
940
|
+
<dt>
|
941
|
+
<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>
|
942
|
+
</dt>
|
943
|
+
<dd></dd>
|
944
|
+
<dt>
|
945
|
+
<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>
|
946
|
+
</dt>
|
947
|
+
<dd></dd>
|
948
|
+
<dt>
|
949
|
+
<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>
|
950
|
+
</dt>
|
951
|
+
<dd></dd>
|
952
|
+
<dt>
|
953
|
+
<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>
|
954
|
+
</dt>
|
955
|
+
<dd></dd>
|
956
|
+
<dt>
|
957
|
+
<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>
|
958
|
+
</dt>
|
959
|
+
<dd></dd>
|
960
|
+
<dt>
|
961
|
+
<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>
|
962
|
+
</dt>
|
963
|
+
<dd></dd>
|
964
|
+
<dt>
|
965
|
+
<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>
|
966
|
+
</dt>
|
967
|
+
<dd></dd>
|
968
|
+
<dt>
|
969
|
+
<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>
|
970
|
+
</dt>
|
971
|
+
<dd></dd>
|
972
|
+
<dt>
|
973
|
+
<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>
|
974
|
+
</dt>
|
975
|
+
<dd></dd>
|
976
|
+
<dt>
|
977
|
+
<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>
|
978
|
+
</dt>
|
979
|
+
<dd></dd>
|
980
|
+
<a name="idxV"></a><h3 class="title">V</h3>
|
981
|
+
<dt>
|
982
|
+
<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>
|
983
|
+
</dt>
|
984
|
+
<dd></dd>
|
985
|
+
<dt>
|
986
|
+
<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>
|
987
|
+
</dt>
|
988
|
+
<dd></dd>
|
989
|
+
<dt>
|
990
|
+
<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>
|
991
|
+
</dt>
|
992
|
+
<dd></dd>
|
993
|
+
<dt>
|
994
|
+
<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>
|
995
|
+
</dt>
|
996
|
+
<dd></dd>
|
997
|
+
<dt>
|
998
|
+
<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>
|
999
|
+
</dt>
|
1000
|
+
<dd></dd>
|
1001
|
+
<dt>
|
1002
|
+
<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>
|
1003
|
+
</dt>
|
1004
|
+
<dd></dd>
|
1005
|
+
<dt>
|
1006
|
+
<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>
|
1007
|
+
</dt>
|
1008
|
+
<dd></dd>
|
1009
|
+
<dt>
|
1010
|
+
<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>
|
1011
|
+
</dt>
|
1012
|
+
<dd></dd>
|
1013
|
+
<dt>
|
1014
|
+
<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>
|
1015
|
+
</dt>
|
1016
|
+
<dd></dd>
|
1017
|
+
<dt>
|
1018
|
+
<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>
|
1019
|
+
</dt>
|
1020
|
+
<dd></dd>
|
1021
|
+
<dt>
|
1022
|
+
<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>
|
1023
|
+
</dt>
|
1024
|
+
<dd></dd>
|
1025
|
+
<dt>
|
1026
|
+
<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>
|
1027
|
+
</dt>
|
1028
|
+
<dd></dd>
|
1029
|
+
<dt>
|
1030
|
+
<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>
|
1031
|
+
</dt>
|
1032
|
+
<dd></dd>
|
1033
|
+
<dt>
|
1034
|
+
<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>
|
1035
|
+
</dt>
|
1036
|
+
<dd></dd>
|
1037
|
+
<dt>
|
1038
|
+
<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>
|
1039
|
+
</dt>
|
1040
|
+
<dd></dd>
|
1041
|
+
<dt>
|
1042
|
+
<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>
|
1043
|
+
</dt>
|
1044
|
+
<dd></dd>
|
1045
|
+
<dt>
|
1046
|
+
<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>
|
1047
|
+
</dt>
|
1048
|
+
<dd></dd>
|
1049
|
+
<dt>
|
1050
|
+
<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>
|
1051
|
+
</dt>
|
1052
|
+
<dd></dd>
|
1053
|
+
<dt>
|
1054
|
+
<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>
|
1055
|
+
</dt>
|
1056
|
+
<dd></dd>
|
1057
|
+
<dt>
|
1058
|
+
<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>
|
1059
|
+
</dt>
|
1060
|
+
<dd></dd>
|
1061
|
+
<dt>
|
1062
|
+
<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>
|
1063
|
+
</dt>
|
1064
|
+
<dd></dd>
|
1065
|
+
<dt>
|
1066
|
+
<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>
|
1067
|
+
</dt>
|
1068
|
+
<dd></dd>
|
1069
|
+
<dt>
|
1070
|
+
<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>
|
1071
|
+
</dt>
|
1072
|
+
<dd></dd>
|
1073
|
+
<dt>
|
1074
|
+
<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>
|
1075
|
+
</dt>
|
1076
|
+
<dd></dd>
|
1077
|
+
<dt>
|
1078
|
+
<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>
|
1079
|
+
</dt>
|
1080
|
+
<dd></dd>
|
1081
|
+
<dt>
|
1082
|
+
<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>
|
1083
|
+
</dt>
|
1084
|
+
<dd></dd>
|
1085
|
+
<dt>
|
1086
|
+
<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>
|
1087
|
+
</dt>
|
1088
|
+
<dd></dd>
|
1089
|
+
<dt>
|
1090
|
+
<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>
|
1091
|
+
</dt>
|
1092
|
+
<dd></dd>
|
1093
|
+
<dt>
|
1094
|
+
<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>
|
1095
|
+
</dt>
|
1096
|
+
<dd></dd>
|
1097
|
+
<dt>
|
1098
|
+
<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>
|
1099
|
+
</dt>
|
1100
|
+
<dd></dd>
|
1101
|
+
<dt>
|
1102
|
+
<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>
|
1103
|
+
</dt>
|
1104
|
+
<dd></dd>
|
1105
|
+
<dt>
|
1106
|
+
<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>
|
1107
|
+
</dt>
|
1108
|
+
<dd></dd>
|
1109
|
+
<dt>
|
1110
|
+
<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>
|
1111
|
+
</dt>
|
1112
|
+
<dd></dd>
|
1113
|
+
<dt>
|
1114
|
+
<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>
|
1115
|
+
</dt>
|
1116
|
+
<dd></dd>
|
1117
|
+
<dt>
|
1118
|
+
<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>
|
1119
|
+
</dt>
|
1120
|
+
<dd></dd>
|
1121
|
+
<dt>
|
1122
|
+
<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>
|
1123
|
+
</dt>
|
1124
|
+
<dd></dd>
|
1125
|
+
<dt>
|
1126
|
+
<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>
|
1127
|
+
</dt>
|
1128
|
+
<dd></dd>
|
1129
|
+
<dt>
|
1130
|
+
<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>
|
1131
|
+
</dt>
|
1132
|
+
<dd></dd>
|
1133
|
+
<dt>
|
1134
|
+
<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>
|
1135
|
+
</dt>
|
1136
|
+
<dd></dd>
|
1137
|
+
<dt>
|
1138
|
+
<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>
|
1139
|
+
</dt>
|
1140
|
+
<dd></dd>
|
1141
|
+
<dt>
|
1142
|
+
<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>
|
1143
|
+
</dt>
|
1144
|
+
<dd></dd>
|
1145
|
+
<dt>
|
1146
|
+
<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>
|
1147
|
+
</dt>
|
1148
|
+
<dd></dd>
|
1149
|
+
<dt>
|
1150
|
+
<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>
|
1151
|
+
</dt>
|
1152
|
+
<dd></dd>
|
1153
|
+
<dt>
|
1154
|
+
<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>
|
1155
|
+
</dt>
|
1156
|
+
<dd></dd>
|
1157
|
+
<dt>
|
1158
|
+
<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>
|
1159
|
+
</dt>
|
1160
|
+
<dd></dd>
|
1161
|
+
<dt>
|
1162
|
+
<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>
|
1163
|
+
</dt>
|
1164
|
+
<dd></dd>
|
1165
|
+
<dt>
|
1166
|
+
<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>
|
1167
|
+
</dt>
|
1168
|
+
<dd></dd>
|
1169
|
+
<dt>
|
1170
|
+
<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>
|
1171
|
+
</dt>
|
1172
|
+
<dd></dd>
|
1173
|
+
<dt>
|
1174
|
+
<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>
|
1175
|
+
</dt>
|
1176
|
+
<dd></dd>
|
1177
|
+
<dt>
|
1178
|
+
<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>
|
1179
|
+
</dt>
|
1180
|
+
<dd></dd>
|
1181
|
+
<dt>
|
1182
|
+
<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>
|
1183
|
+
</dt>
|
1184
|
+
<dd></dd>
|
1185
|
+
<dt>
|
1186
|
+
<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>
|
1187
|
+
</dt>
|
1188
|
+
<dd></dd>
|
1189
|
+
<dt>
|
1190
|
+
<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>
|
1191
|
+
</dt>
|
1192
|
+
<dd></dd>
|
1193
|
+
<dt>
|
1194
|
+
<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>
|
1195
|
+
</dt>
|
1196
|
+
<dd></dd>
|
1197
|
+
<dt>
|
1198
|
+
<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>
|
1199
|
+
</dt>
|
1200
|
+
<dd></dd>
|
1201
|
+
<dt>
|
1202
|
+
<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>
|
1203
|
+
</dt>
|
1204
|
+
<dd></dd>
|
1205
|
+
<dt>
|
1206
|
+
<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>
|
1207
|
+
</dt>
|
1208
|
+
<dd></dd>
|
1209
|
+
<dt>
|
1210
|
+
<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>
|
1211
|
+
</dt>
|
1212
|
+
<dd></dd>
|
1213
|
+
<dt>
|
1214
|
+
<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>
|
1215
|
+
</dt>
|
1216
|
+
<dd></dd>
|
1217
|
+
<dt>
|
1218
|
+
<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>
|
1219
|
+
</dt>
|
1220
|
+
<dd></dd>
|
1221
|
+
<dt>
|
1222
|
+
<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>
|
1223
|
+
</dt>
|
1224
|
+
<dd></dd>
|
1225
|
+
<dt>
|
1226
|
+
<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>
|
1227
|
+
</dt>
|
1228
|
+
<dd></dd>
|
1229
|
+
<dt>
|
1230
|
+
<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>
|
1231
|
+
</dt>
|
1232
|
+
<dd></dd>
|
1233
|
+
<dt>
|
1234
|
+
<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>
|
1235
|
+
</dt>
|
1236
|
+
<dd></dd>
|
1237
|
+
<dt>
|
1238
|
+
<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>
|
1239
|
+
</dt>
|
1240
|
+
<dd></dd>
|
1241
|
+
<dt>
|
1242
|
+
<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>
|
1243
|
+
</dt>
|
1244
|
+
<dd></dd>
|
1245
|
+
<dt>
|
1246
|
+
<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>
|
1247
|
+
</dt>
|
1248
|
+
<dd></dd>
|
1249
|
+
<dt>
|
1250
|
+
<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>
|
1251
|
+
</dt>
|
1252
|
+
<dd></dd>
|
1253
|
+
<dt>
|
1254
|
+
<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>
|
1255
|
+
</dt>
|
1256
|
+
<dd></dd>
|
1257
|
+
<dt>
|
1258
|
+
<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>
|
1259
|
+
</dt>
|
1260
|
+
<dd></dd>
|
1261
|
+
<dt>
|
1262
|
+
<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>
|
1263
|
+
</dt>
|
1264
|
+
<dd></dd>
|
1265
|
+
<dt>
|
1266
|
+
<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>
|
1267
|
+
</dt>
|
1268
|
+
<dd></dd>
|
1269
|
+
<dt>
|
1270
|
+
<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>
|
1271
|
+
</dt>
|
1272
|
+
<dd></dd>
|
1273
|
+
<dt>
|
1274
|
+
<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>
|
1275
|
+
</dt>
|
1276
|
+
<dd></dd>
|
1277
|
+
<dt>
|
1278
|
+
<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>
|
1279
|
+
</dt>
|
1280
|
+
<dd></dd>
|
1281
|
+
<dt>
|
1282
|
+
<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>
|
1283
|
+
</dt>
|
1284
|
+
<dd></dd>
|
1285
|
+
<dt>
|
1286
|
+
<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>
|
1287
|
+
</dt>
|
1288
|
+
<dd></dd>
|
1289
|
+
<dt>
|
1290
|
+
<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>
|
1291
|
+
</dt>
|
1292
|
+
<dd></dd>
|
1293
|
+
<dt>
|
1294
|
+
<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>
|
1295
|
+
</dt>
|
1296
|
+
<dd></dd>
|
1297
|
+
<dt>
|
1298
|
+
<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>
|
1299
|
+
</dt>
|
1300
|
+
<dd></dd>
|
1301
|
+
<dt>
|
1302
|
+
<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>
|
1303
|
+
</dt>
|
1304
|
+
<dd></dd>
|
1305
|
+
<dt>
|
1306
|
+
<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>
|
1307
|
+
</dt>
|
1308
|
+
<dd></dd>
|
1309
|
+
</div>
|
1310
|
+
<div class="footer">
|
1311
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
1312
|
+
</body>
|
1313
|
+
</html>
|