raylib-bindings 0.7.4-x86_64-darwin → 0.7.5-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f418840d09bee20456488883587c7dd07ef579669b7197fe9d79fc7e41afc48b
4
- data.tar.gz: 6c995a5dda0c3e1a919cefb31f9300fa3dbc5a74195be7b02b836ff1fe325d7f
3
+ metadata.gz: b8f0ca3826571e8e57b23ef79ecba1a012c0121a2130948167609c309db15a3b
4
+ data.tar.gz: c5c437e2126335717245718b5fb6488cb5cc45ab8606bef6cc8d95270745c34d
5
5
  SHA512:
6
- metadata.gz: 16dd8c3bab9e60ba4a2118821961d5753e6dbb01d64dcbe97fe45e1164d2926c3275f19616e29394bfc662d53b23b8f3325b37c6a912b1b0adce1ae27591da5d
7
- data.tar.gz: 33282261b6248d5eabc40dc3b0d000cb51f9a3f8661103731216e66f1da29d19c5874a3fa82bbdd7c5bf5c91e677252095c9b3b787146f9661d7f7fb1110f738
6
+ metadata.gz: 6b3f7355b9199064844952c0d0c2085cf97203dad059ee132f202cab6fcde7974d4aafddc9a5a86067c5f8b8d09adb7f7557170eaa27a0a253f59116134ac0be
7
+ data.tar.gz: 0a5f8e56692a23131171875b27724fe0f1a69fedd19905680811a09a261849536584c505736ac0eca3b6b3bebfa0e612b99cb796fdcb461f68eeec1d759e477b
data/ChangeLog CHANGED
@@ -1,3 +1,11 @@
1
+ 2024-07-14 vaiorabbit <http://twitter.com/vaiorabbit>
2
+
3
+ * Updated with latest raylib ( https://github.com/raysan5/raylib/commit/5ede47618bd9f9a440af648da1b4817e51644994 ) and raygui ( https://github.com/raysan5/raygui/commit/3fb9d77a67243497e10ae0448374a52a2a65e26f )
4
+
5
+ 2024-06-29 vaiorabbit <http://twitter.com/vaiorabbit>
6
+
7
+ * Updated with latest raylib ( https://github.com/raysan5/raylib/commit/c1ea32655aad97402ea3b215ab7b414d0809bb8d ) and raygui ( https://github.com/raysan5/raygui/commit/0f832e6a6edfa77a93c327617468b15755cb05ce )
8
+
1
9
  2024-06-15 vaiorabbit <http://twitter.com/vaiorabbit>
2
10
 
3
11
  * Updated with latest raylib ( https://github.com/raysan5/raylib/commit/b4fbdc028302f9a697f196e8d02a7dca28912f59 ) and raygui ( https://github.com/raysan5/raygui/commit/4b3d94f5df6a5a2aa86286350f7e20c0ca35f516 )
data/README.md CHANGED
@@ -3,15 +3,15 @@
3
3
  # Yet another raylib wrapper for Ruby #
4
4
 
5
5
  * Created : 2021-10-17
6
- * Last modified : 2024-06-15
6
+ * Last modified : 2024-07-14
7
7
 
8
8
  Provides Ruby bindings for raylib-related libraries including:
9
9
 
10
- * [raylib](https://github.com/raysan5/raylib) version [5.1-dev]( https://github.com/raysan5/raylib/commit/b4fbdc028302f9a697f196e8d02a7dca28912f59 )
10
+ * [raylib](https://github.com/raysan5/raylib) version [5.1-dev]( https://github.com/raysan5/raylib/commit/5ede47618bd9f9a440af648da1b4817e51644994 )
11
11
  * raylib
12
12
  * raymath
13
13
  * rlgl
14
- * [raygui](https://github.com/raysan5/raygui) version [4.1-dev]( https://github.com/raysan5/raygui/commit/4b3d94f5df6a5a2aa86286350f7e20c0ca35f516 )
14
+ * [raygui](https://github.com/raysan5/raygui) version [4.1-dev]( https://github.com/raysan5/raygui/commit/3fb9d77a67243497e10ae0448374a52a2a65e26f )
15
15
  * [Physac](https://github.com/raysan5/physac) version [1.1]( https://github.com/raysan5/physac/commit/4a8e17f263fb8e1150b3fbafc96f880c7d7a4833 )
16
16
 
17
17
  <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/bitmap_font_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/game_of_life_simple_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/lissajous_curve_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/procedural_texture_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/reversi_board_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/utf8_font_rb.png" width="125">
Binary file
Binary file
Binary file
data/lib/raygui_main.rb CHANGED
@@ -731,7 +731,7 @@ module Raylib
731
731
  # @!method GuiValueBoxFloat(bounds, text, textValue, value, editMode)
732
732
  # GuiValueBoxFloat : Value box control for float values
733
733
  # @param bounds [Rectangle]
734
- # @param text [const char*]
734
+ # @param text [const char *]
735
735
  # @param textValue [char *]
736
736
  # @param value [float *]
737
737
  # @param editMode [bool]
data/lib/raylib_main.rb CHANGED
@@ -12,9 +12,9 @@ module Raylib
12
12
  # Define/Macro
13
13
 
14
14
  RAYLIB_VERSION_MAJOR = 5
15
- RAYLIB_VERSION_MINOR = 1
15
+ RAYLIB_VERSION_MINOR = 5
16
16
  RAYLIB_VERSION_PATCH = 0
17
- RAYLIB_VERSION = "5.1-dev"
17
+ RAYLIB_VERSION = "5.5"
18
18
 
19
19
  # Enum
20
20
 
@@ -899,7 +899,7 @@ module Raylib
899
899
  class Ray < FFI::Struct
900
900
  layout(
901
901
  :position, Vector3, # Ray position (origin)
902
- :direction, Vector3, # Ray direction
902
+ :direction, Vector3, # Ray direction (normalized)
903
903
  )
904
904
  def position = self[:position]
905
905
  def position=(v) self[:position] = v end
@@ -3132,6 +3132,13 @@ module Raylib
3132
3132
  # @return [Image]
3133
3133
  [:ImageFromImage, :ImageFromImage, [Image.by_value, Rectangle.by_value], Image.by_value],
3134
3134
 
3135
+ # @!method ImageFromChannel(image, selectedChannel)
3136
+ # ImageFromChannel : Create an image from a selected channel of another image (GRAYSCALE)
3137
+ # @param image [Image]
3138
+ # @param selectedChannel [int]
3139
+ # @return [Image]
3140
+ [:ImageFromChannel, :ImageFromChannel, [Image.by_value, :int], Image.by_value],
3141
+
3135
3142
  # @!method ImageText(text, fontSize, color)
3136
3143
  # ImageText : Create an image from text (default font)
3137
3144
  # @param text [const char *]
@@ -3207,9 +3214,9 @@ module Raylib
3207
3214
  [:ImageBlurGaussian, :ImageBlurGaussian, [:pointer, :int], :void],
3208
3215
 
3209
3216
  # @!method ImageKernelConvolution(image, kernel, kernelSize)
3210
- # ImageKernelConvolution : Apply Custom Square image convolution kernel
3217
+ # ImageKernelConvolution : Apply custom square convolution kernel to image
3211
3218
  # @param image [Image *]
3212
- # @param kernel [float*]
3219
+ # @param kernel [const float *]
3213
3220
  # @param kernelSize [int]
3214
3221
  # @return [void]
3215
3222
  [:ImageKernelConvolution, :ImageKernelConvolution, [:pointer, :pointer, :int], :void],
@@ -3414,6 +3421,16 @@ module Raylib
3414
3421
  # @return [void]
3415
3422
  [:ImageDrawLineV, :ImageDrawLineV, [:pointer, Vector2.by_value, Vector2.by_value, Color.by_value], :void],
3416
3423
 
3424
+ # @!method ImageDrawLineEx(dst, start, end, thick, color)
3425
+ # ImageDrawLineEx : Draw a line defining thickness within an image
3426
+ # @param dst [Image *]
3427
+ # @param start [Vector2]
3428
+ # @param end [Vector2]
3429
+ # @param thick [int]
3430
+ # @param color [Color]
3431
+ # @return [void]
3432
+ [:ImageDrawLineEx, :ImageDrawLineEx, [:pointer, Vector2.by_value, Vector2.by_value, :int, Color.by_value], :void],
3433
+
3417
3434
  # @!method ImageDrawCircle(dst, centerX, centerY, radius, color)
3418
3435
  # ImageDrawCircle : Draw a filled circle within an image
3419
3436
  # @param dst [Image *]
@@ -3489,6 +3506,56 @@ module Raylib
3489
3506
  # @return [void]
3490
3507
  [:ImageDrawRectangleLines, :ImageDrawRectangleLines, [:pointer, Rectangle.by_value, :int, Color.by_value], :void],
3491
3508
 
3509
+ # @!method ImageDrawTriangle(dst, v1, v2, v3, color)
3510
+ # ImageDrawTriangle : Draw triangle within an image
3511
+ # @param dst [Image *]
3512
+ # @param v1 [Vector2]
3513
+ # @param v2 [Vector2]
3514
+ # @param v3 [Vector2]
3515
+ # @param color [Color]
3516
+ # @return [void]
3517
+ [:ImageDrawTriangle, :ImageDrawTriangle, [:pointer, Vector2.by_value, Vector2.by_value, Vector2.by_value, Color.by_value], :void],
3518
+
3519
+ # @!method ImageDrawTriangleEx(dst, v1, v2, v3, c1, c2, c3)
3520
+ # ImageDrawTriangleEx : Draw triangle with interpolated colors within an image
3521
+ # @param dst [Image *]
3522
+ # @param v1 [Vector2]
3523
+ # @param v2 [Vector2]
3524
+ # @param v3 [Vector2]
3525
+ # @param c1 [Color]
3526
+ # @param c2 [Color]
3527
+ # @param c3 [Color]
3528
+ # @return [void]
3529
+ [:ImageDrawTriangleEx, :ImageDrawTriangleEx, [:pointer, Vector2.by_value, Vector2.by_value, Vector2.by_value, Color.by_value, Color.by_value, Color.by_value], :void],
3530
+
3531
+ # @!method ImageDrawTriangleLines(dst, v1, v2, v3, color)
3532
+ # ImageDrawTriangleLines : Draw triangle outline within an image
3533
+ # @param dst [Image *]
3534
+ # @param v1 [Vector2]
3535
+ # @param v2 [Vector2]
3536
+ # @param v3 [Vector2]
3537
+ # @param color [Color]
3538
+ # @return [void]
3539
+ [:ImageDrawTriangleLines, :ImageDrawTriangleLines, [:pointer, Vector2.by_value, Vector2.by_value, Vector2.by_value, Color.by_value], :void],
3540
+
3541
+ # @!method ImageDrawTriangleFan(dst, points, pointCount, color)
3542
+ # ImageDrawTriangleFan : Draw a triangle fan defined by points within an image (first vertex is the center)
3543
+ # @param dst [Image *]
3544
+ # @param points [Vector2 *]
3545
+ # @param pointCount [int]
3546
+ # @param color [Color]
3547
+ # @return [void]
3548
+ [:ImageDrawTriangleFan, :ImageDrawTriangleFan, [:pointer, :pointer, :int, Color.by_value], :void],
3549
+
3550
+ # @!method ImageDrawTriangleStrip(dst, points, pointCount, color)
3551
+ # ImageDrawTriangleStrip : Draw a triangle strip defined by points within an image
3552
+ # @param dst [Image *]
3553
+ # @param points [Vector2 *]
3554
+ # @param pointCount [int]
3555
+ # @param color [Color]
3556
+ # @return [void]
3557
+ [:ImageDrawTriangleStrip, :ImageDrawTriangleStrip, [:pointer, :pointer, :int, Color.by_value], :void],
3558
+
3492
3559
  # @!method ImageDraw(dst, src, srcRec, dstRec, tint)
3493
3560
  # ImageDraw : Draw a source image within a destination image (tint applied to source)
3494
3561
  # @param dst [Image *]
@@ -4424,12 +4491,12 @@ module Raylib
4424
4491
  # @return [void]
4425
4492
  [:DrawBoundingBox, :DrawBoundingBox, [BoundingBox.by_value, Color.by_value], :void],
4426
4493
 
4427
- # @!method DrawBillboard(camera, texture, position, size, tint)
4494
+ # @!method DrawBillboard(camera, texture, position, scale, tint)
4428
4495
  # DrawBillboard : Draw a billboard texture
4429
4496
  # @param camera [Camera]
4430
4497
  # @param texture [Texture2D]
4431
4498
  # @param position [Vector3]
4432
- # @param size [float]
4499
+ # @param scale [float]
4433
4500
  # @param tint [Color]
4434
4501
  # @return [void]
4435
4502
  [:DrawBillboard, :DrawBillboard, [Camera.by_value, Texture2D.by_value, Vector3.by_value, :float, Color.by_value], :void],
data/lib/raymath.rb CHANGED
@@ -1032,6 +1032,15 @@ module Raylib
1032
1032
  # @param q [Quaternion]
1033
1033
  # @return [int]
1034
1034
  [:QuaternionEquals, :QuaternionEquals, [Quaternion.by_value, Quaternion.by_value], :int],
1035
+
1036
+ # @!method MatrixDecompose(mat, translation, rotation, scale)
1037
+ # MatrixDecompose
1038
+ # @param mat [Matrix]
1039
+ # @param translation [Vector3 *]
1040
+ # @param rotation [Quaternion *]
1041
+ # @param scale [Vector3 *]
1042
+ # @return [void]
1043
+ [:MatrixDecompose, :MatrixDecompose, [Matrix.by_value, :pointer, :pointer, :pointer], :void],
1035
1044
  ]
1036
1045
  entries.each do |entry|
1037
1046
  api_name = if method_naming == :snake_case
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raylib-bindings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.4
4
+ version: 0.7.5
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - vaiorabbit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-15 00:00:00.000000000 Z
11
+ date: 2024-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi