Skip to content

Instantly share code, notes, and snippets.

View jamalamch's full-sized avatar
📷
Working in morocco

Amchart jamal jamalamch

📷
Working in morocco
View GitHub Profile

LibgdxCrRaylib

Raylib vs LibGDX: A Comprehensive Comparison

License

Introduction

Raylib and LibGDX are two prominent game development frameworks, each with its own set of features, strengths, and target audiences. This README provides an in-depth comparison between the two frameworks, covering various aspects such as language, features, performance, community support, and more.

{
"books": [
{
"title": "The Fellowship of the Ring",
"author": "J. R. R. Tolkien",
"publication_date": "29/07/1954",
"word_count": 187790,
"description": "The Fellowship of the Ring is the first of three volumes in The Lord of the Rings, an epic set in the fictional world of Middle-earth. The Lord of the Rings is an entity named Sauron, the Dark Lord, who long ago lost the One Ring that contains much of his power. His overriding desire is to reclaim the Ring and use it to enslave all of Middle-earth.",
"cover_color": "#278700",
"url": "http://help.websico.net/fr/data/rawdata/exemple_pdf.pdf"
@jamalamch
jamalamch / Vector.cs
Created October 25, 2020 21:19
C# vectory All the mathematical "Vector2" that I will need in your project ...
namespace amchart.math
{
/// <summary>
/// Encapsulates a general vector. Allows chaining operations by returning a reference to itself in all modification methods. See
/// <seealso cref="Vector2"/> and <seealso cref="Vector3"/> for specific implementations.
/// @author Xoppa ,jamalAmch
/// </summary>
public interface Vector<T> where T : Vector<T>
{
/// <returns> a copy of this vector </returns>
@jamalamch
jamalamch / MathUtils.cs
Last active October 25, 2020 21:00
C# MATH :: All the mathematical functions that I will need in your project programming language C#
using System;
public class MathUtils
{
private static Random random_Conflict = new Random();
public static Random Random { get { return random_Conflict; } }
public static readonly float nanoToSec = 1 / 1000000000f;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
background-color: black;