Skip to content

Instantly share code, notes, and snippets.

View realvjy's full-sized avatar
🪄
doing magic

vijay verma realvjy

🪄
doing magic
View GitHub Profile
@realvjy
realvjy / BookFlip3D.jsx
Last active January 8, 2024 10:33
Framer Component Override to create 3D Book Flip Effect same as vjy.me
//
// BookFlip3D - Framer Component
// Date - 6 Jan, 2024
// Credits -
// Author: [realvjy](https://vjy.me),
// Twitter: [@realvjy](https://x.com/realvjy)
import { addPropertyControls, ControlType } from "framer"
import React, { CSSProperties, useEffect, useState } from "react"
@realvjy
realvjy / ChoasLinesShader.metal
Last active April 6, 2024 16:05
Choas Lines - Metal Shader
// Lines
float hash( float n ) {
return fract(sin(n)*753.5453123);
}
// Slight modification of iq's noise function.
float noise(vector_float2 x )
{
vector_float2 p = floor(x);
vector_float2 f = fract(x);