Pages

Se afișează postările cu eticheta website. Afișați toate postările
Se afișează postările cu eticheta website. Afișați toate postările

luni, 29 ianuarie 2024

News : FASM graphics with DirectX ...

It is not mandatory to use a game engine, access to the graphic resource of the computer can also be done through FASM.
An example of a website from asmgges.chez.com with source code in assembler that you can reuse !

miercuri, 8 noiembrie 2023

New : An easy way to capture a screenshot of a full webpage ...

How to check your website format ...
You can use many tools, many of which are online.
This is an example of pikwy

duminică, 29 octombrie 2023

Virtual AI Hairstyle.

HairstyleAI lets you try out new haircuts with AI virtually before getting the real thing cut. Get more confident in your own look and feel like yourself again.
You can see more on the official website.

vineri, 13 octombrie 2023

News : The Eclipse Explorer from NASA.

NASA is proud to unveil the Eclipse Explorer – an interactive map designed to enhance your eclipse-viewing experience.

joi, 12 octombrie 2023

luni, 4 septembrie 2023

Rokoko for animation.

Rokoko is a Danish brand of consumer motion capture and animation technology products.Empowering 3D digital creators with high quality sensor based motion capture systems for body, finger and face animations.
You can start with only two web cams and you have great result. See the official website.

duminică, 20 august 2023

NOWHERE virtual spaces.

You can find my virtual space on this webpage.
See the next youtube video from 2022 about this virtual web project.

duminică, 2 iulie 2023

Civitai - online platform for artificial intelligence .

Civitai is a platform that makes it easy for people to share and discover resources for creating AI art. Our users can upload and share custom models that they've trained using their own data, or browse and download models created by other users. These models can then be used with AI art software to generate unique works of art.
You can find a presentation on the Olivio Sarikas youtube channel with some details.

sâmbătă, 29 aprilie 2023

miercuri, 26 aprilie 2023

Build a Mindblowing 3D Portfolio Website // Three.js Beginner’s Tutorial

The three.js library can be used very well to create good content in the website development area. You can see a good example from the Fireship youtube channel posted a year ago.

duminică, 9 aprilie 2023

Leia Pix Converter convert 2D images into 3D animation.

The online tool is Leia Pix Converter that allow to generate depth maps from 2D images and convert into 3D object and you can also make short animations with different parameters that you can set.

luni, 27 martie 2023

Online tool for images from clipdrop.

It is a website that offers online tools for image processing, one of these tools I liked more and it is called relight.
This will relight your photos and drawings in seconds.
You can test all of these features on the official website.

sâmbătă, 25 februarie 2023

Online 3D editor tool for design and modeling.

If you like design and modeling, this online tool editor can help you using 3D graphics.

joi, 8 decembrie 2022

duminică, 20 noiembrie 2022

Shadertoy: matrix rotation for uv.

Today I wrote a simple example in shadertoy about how to apply a rotation using rotation matrices with sin and cos for a uv, see wikipedia.
For uv I used already defined uv. I created a stripe using the modulo function to make rotation visible and completed the rotation with the iTime variable defined in shadertoy to rotate it continuously.
Here is the created source code:
void mainImage( out vec4 fragColor, in vec2 fragCoord )
{
    //set the uv to a proper size on the center of screen 
    vec2 uv = (fragCoord - 0.5 * iResolution.xy) / min(iResolution.x, iResolution.y);
    // set rotation angle value
    float rot = radians(0.0);
    // this set rotation by time and 
    rot = iTime;a
    // algebra formula for rotation by matrix , https://en.wikipedia.org/wiki/Rotation_matrix
    mat2 m = mat2(cos(rot), -sin(rot), sin(rot), cos(rot));
    // rotation of uv with matrix algebra formula where is set the rotation angle 
    uv = m* uv;
    // define float by function module from 1.0 and uv.x - uv.y
    float d = mod(uv.x - uv.y, 1.0);
    // color for fragColor is value of fload d by module function
    vec4 col = vec4(vec3(d), 1.0);
    fragColor = vec4(col);
}
Here is an example share from my shadertoy account.

sâmbătă, 20 august 2022

The threejs project by playdoh.

This is a beautiful website project named lagaleriedesespeces build with the Three.js library.
You can see it on this webpage.

sâmbătă, 13 august 2022

Spring Flowers WebGL Demo

A beautiful demo with WebGL.
The source code can be found on this GitHub repository.

luni, 6 iunie 2022

News : The Art of Code : How to turn your 2d fractal into 3d!

The The Art of Code come with a new video tutorial.
A while ago someone asked me if its possible to turn a 2d Koch Snowflake into 3d. I thought about it for a bit and came up with a few ways to do this. In this video we'll go over some of those ways!

marți, 31 mai 2022

Modeling with Blockbench tool.

This tool named Blockbench is a good tool for 3D modeling if you like the Minecraft game style.
You can use it online or download it for desktop.
The target platforms are: 
  • Minecraft: Java Edition 
  • Minecraft: Bedrock Edition 
  • Hytale 
  • Rendering / Game Engine
This video shows the basics of modeling in Blockbench to create custom models for Minecraft bedrock that you can put in Minecraft maps and worlds.