Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Sculpting the Blender Way
Sculpting the Blender Way

Sculpting the Blender Way: Explore Blender's 3D sculpting workflows and latest features, including Face Sets, Mesh Filters, and the Cloth brush

eBook
€20.98 €29.99
Paperback
€37.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Colour book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
Table of content icon View table of contents Preview book icon Preview Book

Sculpting the Blender Way

Chapter 2: Overview of Blender's Sculpting Workflows

This book is about art, so we're going to try not to get too technical about how sculpting works. However, digital sculpting is performed on a computer, and we will have the best experience with the software if we gain a basic understanding of what's going on under the hood. In this chapter, we will identify and explain how Blender's sculpting features work and demystify how each of the sculpting workflows should be used at each stage of the sculpting process.

The sculpting process can be broken up into four separate workflows: Basic Sculpting, Dynamic Topology (Dyntopo for short), Voxel Remeshing, and Multiresolution. Each of these workflows has upsides and downsides. We will learn how to use them at the correct stages of our sculpting projects so that we can maximize the upsides and minimize the downsides. If used appropriately, these workflows will give us artistic control, optimized performance, and final results of the highest quality.

By the end of this chapter, you'll have a good understanding of the components that 3D sculptures are made from and how the computer represents them to us in the 3D Viewport. Additionally, you'll understand how basic sculpting mode works and get a feel for several of the most common sculpting brushes. You'll understand how to use dynamic topology and voxel remeshing workflows to overcome the limitations of basic sculpting mode. Finally, you'll get a glimpse of the multiresolution workflow, which we will learn about, in more depth, in Chapter 5, Learning the Power of Subdivision and the Multiresolution Workflow.

The main topics in this chapter are as follows:

  • Understanding the components of a 3D sculpture
  • Pushing polys with the basic sculpting mode
  • Discovering the limitations of the basic sculpting mode
  • Creating dynamic topology with Dyntopo
  • Practicing the basics of the Voxel Remesher
  • Using the Voxel Remesher in a low-to-high detail workflow
  • Exploring the most powerful sculpting mode – multiresolution

Technical requirements

For general requirements, please refer back to the Technical requirements section that was laid out in Chapter 1, Exploring Blender's User Interface for Sculpting.

In this chapter, we will be dealing with high-resolution models, so you will need at least 1GB of RAM available to open some of the example files. Example files for this book can be downloaded from the GitHub link at https://github.com/PacktPublishing/Sculpting-the-Blender-Way.

Understanding the components of a 3D sculpture

First, we're going to learn how 3D sculptures are represented by the computer. Traditional sculpting is often done with clay. Clay is an earthy blobby mess with no real structure; it's just out there waiting for us to play with it and make art! Digital sculpting in software such as Blender tries to capture the creativity and free-form nature of traditional sculpting. However, in digital sculpting, there is an underlying structure that we need to be aware of as artists. Although we like to think of our digital sculptures as clay, they are actually 3D models that are made up of small geometric shapes called polygons. The word polygon refers to a flat shape with multiple corners. Polygons are made up of three main components, as presented in the following diagram:

Figure 2.1 – The components of a polygon

Figure 2.1 – The components of a polygon

The three main components of a polygon are as follows:

  • Vertex (the plural form of the word is Vertices): These are the corners of a polygon; each vertex represents a single point in 3D space.
  • Edge: This is a line that connects two vertices, edges make up the sides of a polygon.
  • Face: This is the solid inner area of a polygon that forms the visible surface between three or more edges.

A vertex by itself is not a polygon; it has no dimension. An edge can be made between two vertices; however, an edge by itself is not a polygon either. We require at least three vertices and three edges in order to create a polygon. There are three types of polygons that we need to know about to make 3D art:

  • The simplest polygons are Triangles (often abbreviated to Tris). Triangles have three vertices, three edges, and one face.
  • The most common type of polygons are Quadrilaterals (often abbreviated to Quads). These have four vertices, four edges, and one face.
  • Polygons with more than four vertices are known as n-gons. We do not usually use n-gons because they can cause issues with the surfaces of our 3D models.

Collectively, these simple geometric shapes are known as the geometry of the 3D model. When we interconnect all the little pieces of geometry together, they create a mesh. A mesh is the primary type of 3D model that we use when creating 3D models (that includes our sculptures).

We promised not to get too technical in this chapter, so that's plenty of information for now. Let's examine these components in the context of a 3D scene.

Getting ready

Launch Blender and start a new project with the sculpting preset by choosing File | New | Sculpting. We'll start this section by enabling a few viewport overlays that will show us the components of the model in the 3D Viewport.

How to do it…

First, let's enable our Statistics overlay so that Blender will display information about the model:

  1. Locate the Viewport Overlays pop-over menu in the upper-right corner of the 3D Viewport.
  2. Click on the little down arrow to open the pop-over menu..
  3. Check the box labeled Statistics.

Perfect! Now we have some additional information in the upper-left corner of the 3D Viewport, as shown in the following image::

Figure 2.2 – The statistics overlay as seen in the upper-left corner of the 3D Viewport

Figure 2.2 – The statistics overlay as seen in the upper-left corner of the 3D Viewport

Here, the name of our active object is displayed. In this example, the object is called Quad Sphere. The statistics for the geometry are displayed beneath the name. These statistics serve as a summary of the model, but we can do better than that. Let's turn on another overlay so that we can view the polygons:

  1. Open the Viewport Overlays pop-over menu again.
  2. Check the box labeled Wireframe.
  3. Use the slider next to the Wireframe checkbox to increase the value from 0.500 to 1.000 so that the full wireframe will be displayed.

Now we can view the little quadrilaterals that the Quad Sphere's mesh is made out of. It should appear similar to the following diagram:

Figure 2.3 – The wireframe of the sphere (this diagram has been simplified for better visibility in this book)

Figure 2.3 – The wireframe of the sphere (this diagram has been simplified for better visibility in this book)

This overlay is helpful when trying to understand how the geometry of the sculpture is arranged. Usually, we don't want to leave it turned on while we're sculpting because it can be a visual distraction. In this chapter, we'll be toggling this overlay on and off several times to help demonstrate what happens to the polygons as we sculpt. For now, we're done with this overlay. Toggle it back off so that we can move on and try out some sculpting tools!

How it works…

As you will have observed from the statistics, the Quad Sphere model has 24,578 vertices, 49,152 edges, and 24,576 faces. That's more information than we need. As a general rule, we only care about the number of polygons, which is referred to as the model's poly count. However, the poly count isn't always the most accurate representation of the complexity of our model. If we divide all of the quads and n-gons into their simplest forms, we will get the number of triangles in the model, which is known as the tri count. Blender includes the tri count for the model in the statistics overlay, so we can see that this model has 49,152 triangles.

That sounds like a lot, right? Wrong! This is actually a relatively low number of polygons when it comes to 3D sculptures. The childHead.blend example model that we explored in Chapter 1, Exploring Blender's User Interface for Sculpting, has 241,200 triangles, and even that is just scraping the surface of how many polygons Blender can handle.

So, why are there so many? Well, it's pretty simple. Triangles are always flat. We can't have a triangle with curved edges. So, we need to combine lots of triangles together to make the model look as though it's made out of clay with smooth round forms. When observed from afar, all of these tiny pieces of flat geometry should look smooth and round.

Some 3D modeling workflows are focused on arranging the geometry into specific patterns that give us good results without requiring many polygons. However, sculpting is designed around allowing us to create the shapes of the sculpture without having to focus on the geometry. To achieve this, the poly count is greatly increased – sometimes, into the millions. Once we have enough polygons, we can push them around with our sculpting tools to make any shape that we like.

Pushing polys with the basic sculpting mode

Your patience has paid off. It's finally time to try out some sculpting tools! In this section, we will discover how the basic Draw brush can be used to push the polygons of the model around to change the shape of the sculpture.

Getting ready

Let's pick up where we left off in the Understanding the components of a 3D sculpture section. We have a fresh file using the sculpting preset, and we have the Statistics overlay turned on.

Since we will be using tools, it would be helpful to expand the Toolbar on the left-hand side of the 3D Viewport so that we can view the names of the tools. Please refer back to the Expanding and collapsing the Toolbar and the Sidebar section of Chapter 1, Exploring Blender's User Interface for Sculpting.

Don't forget to use a graphics tablet as you follow along with the sculpting instructions. Please refer back to the Setting up your graphics tablet's stylus buttons section of Chapter 1, Exploring Blender's User Interface for Sculpting.

Important Note

If you do not have a graphics tablet, you can click with the left mouse button to use brushes instead of pressing down with the pen tip. Additionally, you can use the middle mouse button instead of the upper side button on the pen for navigation.

You might also experience inconsistencies with brush functionality because a mouse has no pressure sensitivity. If your brushes aren't working while using a mouse, check that the pen pressure for Radius and Strength are turned off in the Tool Settings menu.

How to do it…

As you can see in the upper-left corner of the 3D Viewport header, the sculpting preset has already set our Interaction Mode to Sculpt Mode, so we're ready to go! Now we can try out the Draw brush to begin sculpting:

  1. Locate the Draw brush at the top of the Toolbar.
  2. The active brush will be highlighted in blue. If the Draw brush is not already active, click on it to activate it.
  3. Hover your pen over your graphics tablet and align the pointer over the top of the Quad Sphere model.
  4. Press the tip of your pen onto your graphics tablet to begin drawing on the surface of the Quad Sphere.

Try drawing several brush strokes all over the surface of the model. It doesn't matter what you draw – we're just practicing. You can draw a smiley face, sign your name, or play a game of tic-tac-toe! Fill up the whole surface of the Quad Sphere, just as we've done in the following example:

Figure 2.4 – The Quad Sphere after using the Draw brush

Figure 2.4 – The Quad Sphere after using the Draw brush

Eventually, we will run out of surface area to draw on, so we need to rotate the 3D Viewport around the sculpture so that we can sculpt the other areas of the Quad Sphere. Let's use the upper side button on our tablet pen to orbit around the model:

  1. Hover your pen over the 3D Viewport (do not press the tip of the pen down – keep it hovering slightly above the surface of the graphics tablet).
  2. Press and hold the upper side button on your pen (this button should be bound to the middle mouse button).
  3. While holding the upper side button, drag the pen to orbit around the model until you see an area of the Quad Sphere that you have not yet sculpted on.
  4. Let go of the upper side button of the pen to stop orbiting.

We will be doing this a lot, so practice this style of navigating until you're comfortable enough to move on. Don't forget that sculpting is a 3D process; we must keep orbiting around our object to sculpt details on all sides.

Additionally, it is important to zoom in and out while working on our sculptures. By default, the size of the Draw brush is relative to the view, so the effective size changes as we zoom in and out. If we zoom far away from our model, we can make very large brush strokes, and if we zoom very close to the surface of the model, we can draw finer details. Let's try this now:

  1. Hover your pen over the 3D Viewport (do not press the tip of the pen down – keep it hovering slightly above the surface of the graphics tablet).
  2. Press and hold the Ctrl key on your keyboard and the upper side button on your pen.
  3. While holding the Ctrl key and the upper side button, drag the pen downward to zoom out far away from the Quad Sphere.
  4. Let go of the Ctrl key and the upper side button of the pen to stop zooming.
  5. Use your pen to draw on the quad Quad Sphere.

    Notice that because we are far away from the Quad Sphere, our brush strokes have a much larger impact on the sculpture. Next, let's try the opposite.

  6. While holding the Ctrl key and the upper side button, drag the pen upward to zoom in up close to the surface of the Quad Sphere.
  7. Let go of the Ctrl key and the upper side button of the pen to stop zooming.
  8. Use your pen to draw on the Quad Sphere again.

This time, we can make small details with each stroke of the brush.

It's very common to zoom out and increase the brush size while working on larger forms and, conversely, to zoom in and decrease the brush size while working on smaller details. However, zooming in and out isn't the most practical way to change the brush size. Quite often, we will want to change the brush size without changing our view.

Let's learn how to adjust the brush settings. Take a look at the Tool Settings section in the header of the 3D Viewport. Most of the settings we require are easily accessible from here:

Figure 2.5 – The Tool Settings section for the Draw brush

Figure 2.5 – The Tool Settings section for the Draw brush

The size of the brush is determined by the Radius setting. By default, the radius of the Draw brush is set to 50 px. This radius unit is relative to the view, so 50 px means that the brush radius is 50 pixels on our screen. You can change the size of the brush by clicking and dragging the Radius slider.

This is simple enough, but we have a bit of a disadvantage to using this slider. We aren't able to easily view the size of the brush while we're adjusting it. Let's learn a hotkey for adjusting the brush radius instead:

  1. Hover your pen over the 3D Viewport before pressing the following hotkey.
  2. Press the F hotkey to begin changing the brush radius.
  3. Drag your pen to the left to decrease the radius, or drag your pen to the right to increase the radius.
  4. When you've got a brush radius you like, tap your pen down onto the graphics tablet.

Wasn't that easier than using the slider? Having this visual feedback while we adjust the brush size speeds up our workflow.

The next brush setting that we can adjust is the Strength setting. The strength determines how intense the brush effect will be. With a strength of 0.000, we will have no intensity at all, and the brush will do nothing. With a strength of 1.000, our brush will be at full intensity. Most brushes in Blender default to half strength, 0.500, which we can see in the Tool Settings at the top of the 3D Viewport.. So far, we've been using the Draw brush at half strength, so let's try turning it up to full:

  1. Click and drag the Strength slider to increase the intensity of the brush to 1.000.
  2. Use your pen to draw on the Quad Sphere again.

    Notice how we can raise the polygons twice as high now? Being able to adjust the strength is very useful, but we're not done yet. There is a pressure icon next to the Strength slider. By default, this button is turned on. But what does it do? While this feature is toggled on, we can control the intensity of our brush by varying the pressure on our pen tablet. Let's try it.

  3. If the pressure button isn't already highlighted blue, click on it to activate the strength pressure.
  4. Use your pen to draw on the Quad Sphere.
  5. While drawing, press your pen harder against your graphics tablet to increase the intensity of the brush.

    Pen pressure can be modulated as much as you like during brush strokes. This gives us a lot of control over our brush strokes, and it is one of the main reasons we use graphics tablets for sculpting instead of a mouse. Just like adjusting the radius, we can also use a keyboard shortcut to adjust the brush strength.

  6. Hover your pen over the 3D Viewport before pressing the following keyboard shortcut.
  7. Press the Shift + F keyboard shortcut to begin changing the brush strength.
  8. Drag your pen to the left to decrease the strength, or drag your pen to the right to increase the strength.
  9. When you've got a brush strength that you like, tap your pen down onto the graphics tablet.

    The Draw brush behaves in a pretty straightforward manner. As we draw, it raises the surface of the model upward, but it can also be used to press the surface inward if we reverse the direction of the brush. The Direction of the brush is represented by the little + and - buttons in the Tool Settings at the top of the 3D Viewport.. Currently, the direction is set to Add, as indicated by the blue highlight on the + button. Let's try changing it to Subtract.

  10. Locate the + and - buttons in the Tool Settings section of the 3D Viewport header.
  11. Click on the - button to change the brush direction to Subtract.
  12. Use your pen to draw on the surface of the Quad Sphere model.

    Excellent! Now we can subtract from the model to create grooves in the surface. Once again, we have a hotkey that we can use instead of having to reach up to the Tool Settings.

  13. Hold the Ctrl key to temporarily invert the brush direction.
  14. While holding Ctrl, use your pen to draw on the surface of the Quad Sphere model.
  15. Let go of the Ctrl key to return to the original brush direction.

Very good. Since the Ctrl key makes switching direction very accessible, we should switch the Draw brush direction back to its default direction to avoid confusion. Switch the direction to Add by clicking on the + button in Tool Settings.

There are, of course, other brush settings, but we'll save those for later.

How it works…

Customizing our brush settings gives us a lot of control over how each brush feels. A large radius will allow us to make very large changes to the sculpture, while a small radius is helpful for smaller details. We tend to change brush radius very often while sculpting, so you should get used to using the F hotkey.

Strength is also important for getting our brush to behave exactly the way we want. When combined with pressure, the strength setting works as an upper bound to how intense the brush stroke will be. If strength is set to 1.000, then we will get full intensity while pressing firmly on the tablet. If it is set to 0.500, then we will max out at half intensity while pressing firmly on the tablet. Since we are using a graphics tablet with pressure sensitivity, we can usually keep the strength around 0.800 and press firmly or less firmly to get the intensity we like. Feel free to adjust the strength whenever you need to; just don't set it to 0.000 because no strength means that the brush will have no effect at all.

The direction of the brush gives us quick access to move the surface inward and outward with a single toggle. This gives each brush dual functionality and opens up a lot of possibilities. Some of the advanced brushes don't have a direction, but they can still be toggled to a secondary function while we hold the Ctrl key.

There's more…

Everything we did in this section utilized the basic sculpting mode. In this mode, the brushes push around the geometry to modify the shape of the model. If you read the information in the statistics overlay, you'll notice that the tri count of the Quad Sphere stayed exactly the same while we used the Draw brush. That's because basic Sculpt Mode can only modify the polygons that we already have; it does not create or remove polygons.

The basic Sculpt Mode is useful for all types of modeling. We can temporarily hop into basic sculpting mode and push the polygons around, then hop back out of the Sculpt Mode once we've made the changes we like. However, for the purposes of this book, the basic sculpting mode runs into limitations very quickly. So, what happens when we need more polygons? For that, we require a more advanced sculpting mode, which we will learn about in the next section.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Use Blender’s core sculpting workflows: basic sculpting, Dynotopo, Voxel Remesher, QuadriFlow, and Multiresolution
  • Learn how to use and customize Blender’s sculpting brushes to create fantastic art effortlessly
  • Explore common techniques in Blender 3.0 for creating facial features, clothing, accessories, and more

Description

Sculpting the Blender Way is a detailed step-by-step guide for creating digital art with the latest Blender 3D sculpting features. With over 400 reference images, 18 Sculpting in Action videos, and dozens of 3D sculpture example files, this book is an invaluable resource for traditional and digital sculptors looking to try their hand at sculpting in Blender. The first part of the book will teach you how to navigate Blender's user interface and familiarize yourself with the core workflows, as well as gain an understanding of how the sculpting features work, including basic sculpting, Dyntopo, the Voxel Remesher, QuadriFlow, and Multiresolution. You’ll also learn about a wide range of brushes and all of the latest additions to the sculpting feature set, such as Face Sets, Mesh Filters, and the Cloth brush. The next chapters will show you how to customize these brushes and features to create fantastic 3D sculptures that you can share with the ever-growing Blender community. By the end of this book, you'll have gained a complete understanding of the core sculpting workflows and be able to use Blender to bring your digital characters to life.

Who is this book for?

This book is for artists who want to get started with the exciting new sculpting features in Blender 3D. Whether you have experience using ZBrush or traditional sculpting, or are completely new to sculpting, this book will have something new for you to learn. Prior experience with Blender or other 3D software may be helpful but is not required. However, a graphics tablet from Wacom, XP-Pen, or Huion is highly recommended to be able to follow along the concepts and examples covered in the book.

What you will learn

  • Configure your graphics tablet for use in 3D sculpting
  • Set up Blender's user interface for sculpting
  • Understand the core Blender sculpting workflows
  • Familiarize yourself with Blender's basic sculpting brushes
  • Customize brushes for more advanced workflows
  • Explore high-resolution details with brush alphas and Multiresolution
  • Try out the all-new Cloth brush
  • Render your finished artwork for and make it portfolio-ready
Estimated delivery fee Deliver to Latvia

Premium delivery 7 - 10 business days

€25.95
(Includes tracking information)

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jan 28, 2022
Length: 502 pages
Edition : 1st
Language : English
ISBN-13 : 9781801073875
Vendor :
Blender Foundation
Tools :

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Colour book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
Estimated delivery fee Deliver to Latvia

Premium delivery 7 - 10 business days

€25.95
(Includes tracking information)

Product Details

Publication date : Jan 28, 2022
Length: 502 pages
Edition : 1st
Language : English
ISBN-13 : 9781801073875
Vendor :
Blender Foundation
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 135.97
Taking Blender to the Next Level
€59.99
Blender 3D Incredible Models
€37.99
Sculpting the Blender Way
€37.99
Total 135.97 Stars icon

Table of Contents

11 Chapters
Chapter 1: Exploring Blender's User Interface for Sculpting Chevron down icon Chevron up icon
Chapter 2: Overview of Blender's Sculpting Workflows Chevron down icon Chevron up icon
Chapter 3: Sculpting a Simple Character Head with Basic Brushes Chevron down icon Chevron up icon
Chapter 4: How to Make a Base Mesh for a 3D Sculpture Chevron down icon Chevron up icon
Chapter 5: Learning the Power of Subdivision and the Multiresolution Workflow Chevron down icon Chevron up icon
Chapter 6: Using Advanced Features and Customizing the Sculpting Brushes Chevron down icon Chevron up icon
Chapter 7: Making Eyeballs Chevron down icon Chevron up icon
Chapter 8: Making Accessories and Clothing Chevron down icon Chevron up icon
Chapter 9: Creating Teeth, Eyebrows, and Hair Chevron down icon Chevron up icon
Chapter 10: Rendering Sculptures for Your Portfolio Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.8
(12 Ratings)
5 star 75%
4 star 25%
3 star 0%
2 star 0%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




Perry Sep 01, 2022
Full star icon Full star icon Full star icon Full star icon Full star icon 5
THIS IS ' VERY NICE BOOK WITH SELF QUIZZES ESY TO FOLLOW WELL WOETH THE MOINEY
Amazon Verified review Amazon
Alexander Hinton Mar 31, 2022
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Ok so this is a preliminary review - Will update once I complete all the lessons.I am a relative Blender newbie. Coming from Maya during my formal education, I picked up the author's previous book Blender by Example, and I can 100% claim without a doubt that that book taught me Blender. Xury Greer (the author) has a step by step method of teaching, where he describes every step the student should take next, down to each hotkey and mouse click. He repeats the description throughout the lesson so that the hotkeys and movements taken begin to sink in completely.That really changed my relationship with Blender so I was relieved to see that 'Sculpting the Blender Way' was no different. Xury takes meticulous care to make sure that the reader understands the reason for taking an action or utilizing a tool in blender before asking the reader to replicate the task. It translates into much better outcomes for my work and a much more natural feeling understanding of the sculpting processes in Blender 3.1I will update this review as soon as I have finished the book, but for now, I am really getting a lot out of every minute spent with this text.
Amazon Verified review Amazon
Kindle Customer Jan 29, 2022
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I first experienced Xury Greer’s writing on Blender By Example 2nd Edition. He has a laser-focused awareness of his audience, and always presents difficult concepts in a way that makes it easy to understand. Sculpting the Blender Way takes the time to delve into the tiniest buttons that you otherwise might miss and spend hours looking for. This book gives crystal clarity to important technical concepts like poly count, sculpting artifacts, remeshing methods, and subdivision science. The sculpting lessons are also always fun; in chapter 4, he shows you six different ways to get to a base mesh for sculpting, and I bet six different readers would come away gleefully telling you a different answer for which is their favorite. Sculpting the Blender Way also lands at a pivotal moment for Blender’s sculpting interface, as the last few years have seen continuous changes to the UI and best practice workflows. If you were sculpting in Blender 5 years ago and went back into it, you’d be flabbergasted at all the new tools and techniques: face sets, remeshing, pose brushes, the list goes on. Luckily Mr. Greer’s book is ready to help. Also at this time in 3D history, the expensive sculpting program Zbrush was acquired by Maxon, and shortly thereafter they announced the end of updates for perpetual license users. If you’re learning Blender sculpting as part of Zbrush’s user exodus, welcome to your new favorite software. Sculpting the Blender Way is replete with illustrations and demo files, and jumping between the text and the files makes the techniques instantly click. Perhaps best of all, this book is a page turner. Xury’s writing style is clear and informative, but it’s also friendly, entertaining, and conversational, avoiding the dry pitfalls of so many technical books. You won’t just learn to sculpt the Blender way, you’re also going to have a terrific time reading this.
Amazon Verified review Amazon
Laura D. Feb 07, 2022
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I got a copy of the book for my high school digital media classroom. It has been a great resource for my 3D animation students and even gotten several other students interested in Blender. The book is very approachable for my high school students. Xury is an outstanding teacher and has translated that enthusiasm for sharing his knowledge of Blender into this book. I would recommend it for any teacher that is looking to turn their students on to sculpting in Blender.
Amazon Verified review Amazon
Mcraig Feb 17, 2022
Full star icon Full star icon Full star icon Full star icon Full star icon 5
As a beginner I'm Learning a lot from this book on sculpting but like everything it take time to develop into who you are as a creative artist. Keep going!!
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is the delivery time and cost of print book? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela
What is custom duty/charge? Chevron down icon Chevron up icon

Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.

Do I have to pay customs charges for the print book order? Chevron down icon Chevron up icon

The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.

List of EU27 countries: www.gov.uk/eu-eea:

A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.

How do I know my custom duty charges? Chevron down icon Chevron up icon

The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.

For example:

  • If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
  • Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order? Chevron down icon Chevron up icon

Cancellation Policy for Published Printed Books:

You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.

Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.

What is your returns and refunds policy? Chevron down icon Chevron up icon

Return Policy:

We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:

  1. If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
  2. Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
  3. You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
  4. Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
  5. If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
  6. Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.

On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.

What tax is charged? Chevron down icon Chevron up icon

Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.

What payment methods can I use? Chevron down icon Chevron up icon

You can pay with the following card types:

  1. Visa Debit
  2. Visa Credit
  3. MasterCard
  4. PayPal
What is the delivery time and cost of print books? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela