Browse Source

Merge pull request #29 from bferguson3/casefix

lowercase fix
Bjorn 4 years ago
parent
commit
b0ccf93b97

+ 24 - 0
api/init.lua

@@ -6355,6 +6355,12 @@ return {
                   type = "number",
                   description = "The z coordinate of the circle's axis of rotation.",
                   default = "0"
+                },
+                {
+                  name = "segments",
+                  type = "number",
+                  description = "The number of segments to use for the circle geometry.  Higher numbers increase smoothness but increase rendering cost slightly.",
+                  default = "32"
                 }
               },
               returns = {}
@@ -6413,6 +6419,12 @@ return {
                   type = "number",
                   description = "The z coordinate of the circle's axis of rotation.",
                   default = "0"
+                },
+                {
+                  name = "segments",
+                  type = "number",
+                  description = "The number of segments to use for the circle geometry.  Higher numbers increase smoothness but increase rendering cost slightly.",
+                  default = "32"
                 }
               },
               returns = {}
@@ -6428,6 +6440,12 @@ return {
                   name = "transform",
                   type = "mat4",
                   description = "The circle's transform."
+                },
+                {
+                  name = "segments",
+                  type = "number",
+                  description = "The number of segments to use for the circle geometry.  Higher numbers increase smoothness but increase rendering cost slightly.",
+                  default = "32"
                 }
               },
               returns = {}
@@ -6443,6 +6461,12 @@ return {
                   name = "transform",
                   type = "mat4",
                   description = "The circle's transform."
+                },
+                {
+                  name = "segments",
+                  type = "number",
+                  description = "The number of segments to use for the circle geometry.  Higher numbers increase smoothness but increase rendering cost slightly.",
+                  default = "32"
                 }
               },
               returns = {}

+ 0 - 0
api/lovr/math/mat4/identity.lua → api/lovr/math/Mat4/identity.lua


+ 0 - 0
api/lovr/math/mat4/init.lua → api/lovr/math/Mat4/init.lua


+ 0 - 0
api/lovr/math/mat4/invert.lua → api/lovr/math/Mat4/invert.lua


+ 0 - 0
api/lovr/math/mat4/mul.lua → api/lovr/math/Mat4/mul.lua


+ 0 - 0
api/lovr/math/mat4/orthographic.lua → api/lovr/math/Mat4/orthographic.lua


+ 0 - 0
api/lovr/math/mat4/perspective.lua → api/lovr/math/Mat4/perspective.lua


+ 0 - 0
api/lovr/math/mat4/rotate.lua → api/lovr/math/Mat4/rotate.lua


+ 0 - 0
api/lovr/math/mat4/scale.lua → api/lovr/math/Mat4/scale.lua


+ 0 - 0
api/lovr/math/mat4/set.lua → api/lovr/math/Mat4/set.lua


+ 0 - 0
api/lovr/math/mat4/translate.lua → api/lovr/math/Mat4/translate.lua


+ 0 - 0
api/lovr/math/mat4/transpose.lua → api/lovr/math/Mat4/transpose.lua


+ 0 - 0
api/lovr/math/mat4/unpack.lua → api/lovr/math/Mat4/unpack.lua


+ 0 - 0
api/lovr/math/quat/init.lua → api/lovr/math/Quat/init.lua


+ 0 - 0
api/lovr/math/quat/mul.lua → api/lovr/math/Quat/mul.lua


+ 0 - 0
api/lovr/math/quat/normalize.lua → api/lovr/math/Quat/normalize.lua


+ 0 - 0
api/lovr/math/quat/set.lua → api/lovr/math/Quat/set.lua


+ 0 - 0
api/lovr/math/quat/slerp.lua → api/lovr/math/Quat/slerp.lua


+ 0 - 0
api/lovr/math/quat/unpack.lua → api/lovr/math/Quat/unpack.lua


+ 0 - 0
api/lovr/math/vec3/add.lua → api/lovr/math/Vec3/add.lua


+ 0 - 0
api/lovr/math/vec3/cross.lua → api/lovr/math/Vec3/cross.lua


+ 0 - 0
api/lovr/math/vec3/distance.lua → api/lovr/math/Vec3/distance.lua


+ 0 - 0
api/lovr/math/vec3/div.lua → api/lovr/math/Vec3/div.lua


+ 0 - 0
api/lovr/math/vec3/dot.lua → api/lovr/math/Vec3/dot.lua


+ 0 - 0
api/lovr/math/vec3/init.lua → api/lovr/math/Vec3/init.lua


+ 0 - 0
api/lovr/math/vec3/length.lua → api/lovr/math/Vec3/length.lua


+ 0 - 0
api/lovr/math/vec3/lerp.lua → api/lovr/math/Vec3/lerp.lua


+ 0 - 0
api/lovr/math/vec3/mul.lua → api/lovr/math/Vec3/mul.lua


+ 0 - 0
api/lovr/math/vec3/normalize.lua → api/lovr/math/Vec3/normalize.lua


+ 0 - 0
api/lovr/math/vec3/set.lua → api/lovr/math/Vec3/set.lua


+ 0 - 0
api/lovr/math/vec3/sub.lua → api/lovr/math/Vec3/sub.lua


+ 0 - 0
api/lovr/math/vec3/unpack.lua → api/lovr/math/Vec3/unpack.lua