Skip to content
View seedzy's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report seedzy

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. 3x3 Rotation matrix with an angle an... 3x3 Rotation matrix with an angle and an arbitrary vector
    1
    // Rotation with angle (in radians) and axis
    2
    float3x3 AngleAxis3x3(float angle, float3 axis)
    3
    {
    4
        float c, s;
    5
        sincos(angle, s, c);
  2. leecode leecode Public

    C++

  3. Unity_Shaders_Book-SEEDzy Unity_Shaders_Book-SEEDzy Public

    ShaderLab Learning

    ShaderLab 2 1

  4. UnityURP-MobileDrawMeshInstancedIndirectExample UnityURP-MobileDrawMeshInstancedIndirectExample Public

    Forked from ColinLeung-NiloCat/UnityURP-MobileDrawMeshInstancedIndirectExample

    Example project to draw 1million grass instances on mobile

    C#

  5. UnityURPToonLitShaderExample UnityURPToonLitShaderExample Public

    Forked from ColinLeung-NiloCat/UnityURPToonLitShaderExample

    A very simple toon lit shader example, for you to learn writing custom lit shader in Unity URP

    HLSL

  6. SRPLearn SRPLearn Public

    SRP start

    C# 1