Pages

duminică, 23 august 2020

About ZBrush 2021 3D software.

ZBrush 2021 comes with many features like the Dynamics system.
This along with Controlled Cloth Sculpting and a revisiting of our Dynamic Subdivision feature.
A new feature to ZModeler, as well as introducing iMage 3D support to ZBrush.
This gives the ability to open native-format files created by ZBrushCoreMini.
The ZBrush engine itself has also been enhanced, finding ways to improve performance across the board.
The ZBrush 2021 sculpts more fluidly, as well as taking less time to perform other operations such as DynaMesh.
The price starts from $39.95 / Month, $179.95 / 6 Months, and $895 for SINGLE USER PERPETUAL LICENSE*.
The next video from askNK - youtube channel show us some of these features.

duminică, 16 august 2020

Multiple online tools on angrytools webpage.

The angrytools webpage comes with multiple online tools.
These tools solve multiple issues for you, like:
  • Online CSS Gradient Generator;
  • Gradient to Image Maker;
  • Android Button Maker;
  • Code for Email;
  • CSS Generator;
  • Android Pixel Calculator;
  • Basic Commands - Ubuntu/Windows;
  • CSS Animation Kit;
  • Total Text Converter;
  • Ultimate Bootstrap Editor;
  • CSS Media Query;
Click on bottom button for each online tool.
A new webpage is open with the tool, make changes, and use the result.
For example, click on Gradient to Image Maker button to use this feature.
The new page is open with a gradient area and example.
Select your gradient from Presets and use generate source button to fill CSS code area with the CSS source code for that gradient.
You can copy this source code and use it in your project.

vineri, 31 iulie 2020

Figmin XR adds Sketchfab.

The Figmin XR AR/VR platform for creating and experiencing holographic content adds Sketchfab.
You can create your Sketchfab 3D models that can be converted to Voxels and remixed by Figmin XR’s built-in Voxel editor.
These models can be stored in your inventory and placed anywhere in your digital space.

CameraBag Photo 2020

Ultra-intuitive tools for filtering and editing photos and videos. Available for MacOS and Windows.
This product comes with a price of $30.00.
You can try CameraBag free for 7 days.
At any point, you can purchase a license to unlock the time restriction and register the program on your system.
Already own a CameraBag license and have purchased/renewed your upgrade period within the last year?
This download will upgrade you to the latest version.
System Requirements:
MacOS 10.12 or newer, 64-bit Intel
Windows 8 or newer, 64-bit
1GB RAM, 100 MB hard drive space

vineri, 24 iulie 2020

News: Blender released Alpha version 2.91.0 .

Yesterday, 23.07.2020 the Blender 3D team launched the Alpha version 2.91.0 of the well-known Blender 3D graphics program.
You can find it here.
The team completed the launch in the characteristic style with a joint meeting on the official youtube channel, see:

vineri, 17 iulie 2020

The new ManuelBastioniLAB is named MB-Lab.

The ManuelbastioniLAB add-on was a free and open-source character editor human and will reborn with the name MB-Lab.
Is working very well with Blender 2.90.0 and today I tested.
First if you want to used it then download it from the official website.
Open the Blender 3D software and from main menu: Edit - Preferences... select Add-ons and Install... button and select the downloaded zip file.
You can see in the next image the install of the Characters MB-Lab setting area where is need to be check.
Press the N key on your keyboard to see the all features of this add-on. This is the result of the default Create character button and you can tested with all of these settings.

miercuri, 15 iulie 2020

Another online math editor named mathcha.

If you like math whether you are a student, teacher, or parent, then this online editor is very suitable for you.
Take a look at the official youtube channel:

duminică, 28 iunie 2020

Godot 4.0 : New feature SDFGI on Godot.

Another feature for Godot game engine:
  • Godot 4.0 gets SDFGI stands for Signed Distance Field Global Illumination based real-time global illumination;
See this feature at Juan Linietsky official YouTube channel - the author of this good game engine.
Juan Linietsky is part of the development team of Godot game engine starts in 2007.

Unity 3D : Unity Learn Premium will be available to everyone at no cost.

Unity 3D team comes with many resources and features for game development and students:
Supporting our Community: We’re making Learn Premium available to all users in perpetuity. Start Learning.
You can find on the official webpage two :
Unity ML-Agents Hummingbirds
and
Unity ML-Agents Penguins
A short introduction by Jessica Lindl on June 23, 2020, can be found on the official Unity blog tells us:
... That’s why starting today, Unity Learn Premium will be available to everyone at no cost.
Now, let's see the video from the official Unity YouTube channel:

sâmbătă, 27 iunie 2020

How to Create Variable Radius Bevel in Blender by Gleb Alexandrov.

With 157K subscribers, the author of this video tutorial comes with a good point to start learning Blender 3D software ...
Follow the channel to see more ...

duminică, 21 iunie 2020

News: Contest from Pixilart website.

Pixilart Speed Drawing Contest is the first of its type. A winner will be chosen on July 31st, 2020 at which time this contest will come to an end.
You need to draw something, record your drawing and upload it to youtube and put the link of the youtube video to the official website.
You can win an Artist Display 12 Pro tablet.
And that's not all, the website has an online tool for drawing and comes with these new features:
  • online gallery;
  • create an account, and share your drawings;
  • every day this website comes with a daily challenge to test your skill;

joi, 18 iunie 2020

News: The new release of GIMP version 2.10.20 .

This new stable release version 2.10.20 come at 2020-06-07 for all users.
The release can be download for GNU/Linux, OS X ,and Microsoft Windows on the official webpage.
The team development tells us about this release here:
GIMP 2.10.20 comes with new features as well as important bugfixes.

Release highlights:

    Tool-group menus can now expand on hover
    Non-destructive cropping now available by cropping the canvas rather than actual pixels
    Better PSD support: exporting of 16-bit files now available, reading/writing channels in the right order
    On-canvas controls for the Vignette filter
    New filters: Bloom, Focus Blur, Lens Blur, Variable Blur
    Blending options now built into filter dialogs
    Over 30 bugfixes


duminică, 14 iunie 2020

Shadertoy: A simple round square.

This is a simple tutorial about how you can create a simple round square build using the math function sqrt and the shadertoy web tool.
The source code is very simple and all the lines of source code come with explained comments
Let's see the source code:
// create a function for round square 
vec3 round_square( vec2 uv )
{
 // Set the size of the square, can be changed .01 6.
 float square_dimension = 6.;
 
 // Create math function for round sqare shape 
 float my_square = sqrt(length(pow(uv-vec2(.0,.0),vec2(square_dimension))))-.1;
 
 //Set default poz 
 vec3 poz = vec3(1.,1.,1.);
 
 // Return the result 
 return mix(vec3(0.1),poz*poz, smoothstep(0.,.001,my_square));
}

// Set color for the round square
vec3 color = vec3(.1, 76., 76.);

void mainImage( out vec4 fragColor, in vec2 fragCoord )
{
 // Normalized pixel coordinates (from 0 to 1)
 vec2 uv = (fragCoord-.5*iResolution.xy)/iResolution.y;
 // Set color 0,0,0,0
 fragColor = vec4(0);
 // u=Use for to build with round_square
 for (int i = 0; i < 10+int(min(0,iFrame)); i++) {
 // Set UV2 from basic UV
 vec2 uv2 = uv + 1. / iResolution.y * 1.25;
 // Create the round square
 fragColor += vec4(round_square(uv2) + color.xyz , 1.);
 }
 // show the square
 fragColor.xyz = (fragColor.xyz/fragColor.w);
}
This is the result: