I am very proud of this:
Real-time Indirect Diffuse Light on a low-end GPU.
No tricks, no pre-compute, no temporal AA, no slow convergence. 100% dynamic geometry/light every frame.
#PhotonMapping#OpenCL
@kdlc12 @BeeMixsy I once started making a procedural 3D editor in Python. But the issue is that “selection” does not translate well to code.
But the idea was:
house = cube().extrudeface(5).selectedge([0,2]).collapse()
..or similar. I didn’t get too far, but the edit history is explicit.
@jeriellsworth Is that a request for recommendations, or a proclamation that you are watching a bicycle-skiing movie?
If the former: “Don’t look up” is this decade’s best movie. Already seen it? See Kubrick’s “Dr Strangelove” which is the same thing, but for 1960s angst.
@kdlc12 @BeeMixsy Nendo, long gone, was the inspiration for Wings3D.
What made it really good were all the in-editor tutorials that came with it. It taught me how to create!
“This is a cube/sphere/cyl, and this is how to turn that into to a rocket/teacup/tennis-racket.”
https://t.co/gMKFLR9s4F
@kdlc12 @BeeMixsy Makes sense to me!
I would look at Nendo and Wings3D approach of minimalist UI:
You only need a handful of operations on points, edges, faces to make a 3D model.
HOW MANY MORE BLUE SCREENS OF DEATH BEFORE PEOPLE STOP USING WINDOWS FOR ANYTHING MORE CRITICAL THAN SOLITAIRE?
IMPORTANT stuff should go on QNX, BSD, Linux.
IT managers still on Windows deserve this.
LIVE: Scenes at Los Angeles (LAX) airport in California, amid global computer system outages reportedly due to CrowdStrike.
#BREAKING#LosAngeles#California
Today marks the 10th anniversary since the forces of the Moscow-based terror organization (aka the Russia) downed #MH17, killing 298 people, 80 of whom were children
Never Forget! Russia will not stop until russia is stopped!
The Nixon quote hits both number 3 and number 11.
The democracy ⇔ fascism flip that America is doing now, reminds me of the gop ⇔ democrats flip regarding racism.
American society is surprisingly fluid when it comes to principles. Liberty should not be taken for granted.
@ID_AA_Carmack “..hard core free speech advocate..”
Right of free speech pertains to the government, which is not allowed to silence you.
It has nothing to do with twitter, nor with cancelling.
Speech should have all the private repercussions, especially hateful speech.
@vtchakarova@jgarzik Expensive shipping is a good thing, as it encourages consuming local products.
It’s pretty obscene to be consuming Argentinian beef or New Zeeland fruit when you are in Europe.
@geerlingguy Any product that sells out in 5 minutes was priced too low. 🤷🏻♂️
10X the price, and only the most committed developers would buy one, not the “maybe that could be neat” crowd.
@SpencerHakimian@chamath “Bone spurs” meant he never got “his training.”
If you stand by Shitler, you welcome Putler as your czar, which means you are a traitor to democracy and a traitor to your country.
An Alzheimer president is bad, but a fascist autocrat is worse. Lincoln and Eisenhower would ↺🪦
@HiddenAsbestos @FoundryModo You only need the vertex coord though! (After rotation.)
Just use the transformed Z coord of the line endpts to colour it.
In a vertex shader:
gl_Position = modelviewprojmat * position;
vec4 ctr = modelviewprojmat * vec4(0,0,0,1);
bool front = gl_ Position.z < ctr.z;