Sflp Shaders 🎁 Premium
// raw sinusoidal waves on axes vec2 q = p; q.x += sin(time * 1.7 + p.y * 8.0) * 0.1; q.y += cos(time * 1.3 + p.x * 7.0) * 0.1;
// SFLP rules: // 1. No texture fetches unless necessary. // 2. No loops longer than 8 iterations. // 3. No matrices — use signed distance fields. // 4. Branchless where possible. // 5. Fit in 80 columns, 32 lines. // 6. One uniform block max. // 7. Output must run on Mali-400 / Adreno 3xx. // 8. Flicker is a feature, not a bug. Example output description (if rendered) A pulsating neon mandala — pink and cyan concentric rings warped by low-frequency analog noise. Scanlines shimmer vertically. The center hole oscillates like a breathing iris. Total register pressure: 4. Estimated fill rate: 2.1 Gpixel/s on embedded GPU. No discard , no sqrt except for radius.
void main() // normalized pixel coord (-1..1) aspect corrected vec2 p = (gl_FragCoord.xy * 2.0 - resolution) / min(resolution.x, resolution.y); sflp shaders
// boolean edge detection via fwidth (fast derivative) float edge = smoothstep(0.0, fwidth(d), abs(d));
// scanline grit (fake low-res) col *= 0.9 + 0.2 * sin(gl_FragCoord.y * 2.0); // raw sinusoidal waves on axes vec2 q = p; q
// color by position & time (no branching) vec3 col = mix(pink, cyan, sin(p.x * 3.14159 + time) * 0.5 + 0.5); col = mix(black, col, edge);
// sflp: stupid-fast lightweight fragment // dimensions: 640x360 | fps: 999+ | mem: 4 registers // license: unlicense | author: shader.elf precision mediump float; uniform vec2 resolution; uniform float time; No loops longer than 8 iterations
// 3-tone palette: black / hot pink / cyan vec3 black = vec3(0.0); vec3 pink = vec3(1.0, 0.2, 0.8); vec3 cyan = vec3(0.2, 0.9, 1.0);
No, NanoCAD 5 is NOT free – I used this for sometime, now they tell me I have to buy a license
NanoCAD is a joke! Please don’t wast your time on it.
QCAD is outstanding.
GstarCAD has DWG fastview for free as IOS, Android, web, and Windows apps.
Nanocad is not free anymore
Yes, it is – NanoCAD 5 is totally free. The newest version (NanoCAD 2024) isn’t free, unfortunately, they have gone to a yearly subscription fee of US$ 249. I would even be happy to pay that for a perpetual license, but I don’t see the point of paying them to develop new features I don’t need. NanoCAD 5 doesn’t open the current AutoCAD files but reads/writes up to AutoCAD version 2013/2014. Sometimes I ask people to export a 2013 DWG file or create a DXF file for me. Beyond that, NanoCAD does everything I need. You know, lines, rectangles, circles, text, dimensions, model space/paper space and pen assignments, that’s about it. Nothing fancy.