Skip to content
View AshishBhattarai's full-sized avatar

Block or report AshishBhattarai

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. zig_matrix zig_matrix Public

    A linear algebra library for computer graphics

    Zig 20

  2. AshishBhattarai.github.io AshishBhattarai.github.io Public

    HTML 1

  3. Two-Level Segregated Fit memory allo... Two-Level Segregated Fit memory allocator
    1
    const std = @import("std");
    2
    const Allocator = std.mem.Allocator;
    3
    const MemoryPool = std.heap.MemoryPool;
    4
    
                  
    5
    pub fn bit_scan_msb(mask: usize) u8 {
  4. Simple 2D Rigid Body Solver in JS Simple 2D Rigid Body Solver in JS
    1
    // https://ricefields.me/2024/10/11/intro-to-physics-simulation.html
    2
    
                  
    3
    const canvas = document.getElementById('render_canvas');
    4
    const ctx = canvas.getContext('2d');
    5
    function resizeCanvas() {