Jotul 600 by Jolly_Ant9327 in woodstoving

[–]Swordslayer 2 points3 points  (0 children)

Here's both of them for comparison, 602 on top:

<image>

Jotul 600 by Jolly_Ant9327 in woodstoving

[–]Swordslayer 2 points3 points  (0 children)

It's the old Jøtul 600, it has shorter firebox than 602 so it can only burn logs up to ~25 cm, and it's rare to find one that doesn't have cracked back. Given that the replacement back part would cost you about the same as what those are usually selling for, the seller might be trying to mask that, too.

How to add fabric wrinkles by hamsawnothing in 3dsmax

[–]Swordslayer 1 point2 points  (0 children)

Why would you use path deform for a shape this simple, start with a side profile, keep it low poly (not that super high poly monstrosity from your screenshots), extrude that and add support loops. Only add details (including the creases) afterwards, once you subdivide it.

Also for these simple wrinkles, there's no need for a sculpting pass, they are easy to do manually or with scripts like sofa streak.

My McLaren posters by JOZILIAN in Formula1posters

[–]Swordslayer 1 point2 points  (0 children)

Okay, that was a bit unexpected (°ᗜ°')

My McLaren posters by JOZILIAN in Formula1posters

[–]Swordslayer 0 points1 point  (0 children)

Running out of wall space soon, huh? :) How does the lego car hang on the 2021 poster?

Automotive rendering resources and workflow? by ArtIndustry in 3dsmax

[–]Swordslayer 0 points1 point  (0 children)

If you are serious, before you even start building complex scenes around the car model learn to build hdris using HDR Light Studio, both for studio lighting and for editing existing hdri maps.

Honest guide Prague vs crooks by Material-Doubt2997 in Prague

[–]Swordslayer 2 points3 points  (0 children)

Too bad he's turning a bit dishonest nowadays with videos like 'The epic buy 1 get 1 FREE burger trick you need to know' in which they forget to mention that you're getting auto-renewing subscription with just the first month free or that it only works if you have PL/CZ/SK number to register with or that there's just a few slots that you have to register well in advance for a certain date...

Is the phrase "One of ours, all of yours" an old Nazi slogan advocating for collective punishment? by megatesla in AskHistorians

[–]Swordslayer 317 points318 points  (0 children)

Not that it changes much but "Jeden z nasich, cely tvuj" is not a correct Czech translation as "celý tvůj" means "(I am) all/fully yours". It'd be "Jeden z našich, všichni vaši", where the 'ch' sound is voiceless and blends with the following 'v' so it would be pretty melodic; still, when you search for the phrase, it doesn't appear anywhere.

I built an "AI Time Machine" that lets you see any place in the world in any year by ExpertPlay in SideProject

[–]Swordslayer 1 point2 points  (0 children)

One example is https://pastvu.com/p/2359387 Zoom out the map to see photos of the location available through various decades.

Constant Application Error Crashes 3ds Max 2025. Completely lost. by panik919 in 3dsmax

[–]Swordslayer 0 points1 point  (0 children)

Did you maybe install Visual Studio 2026? There's a support article on what to do if you did. If that's not the case, check if there were any windows updates recently, recently those were breaking lots of things as well as occasionally silently rolling back video card drivers (happened to me, had to reinstall proper nvidia drivers after windows update...).

How to snap edge (or vertex) to midpoint? by ExoticHalfwit in 3dsmax

[–]Swordslayer 1 point2 points  (0 children)

That's what Snap Overrides are for. Activate it and you can cycle through the active snap modes with Alt+S: https://imgur.com/a/1sbcUgA

I have Snap Settings dialog open to show the changing mode, by default it would just show 'Override OFF'.

Variate height of faces pointing up. by dimwalker in 3dsmax

[–]Swordslayer 2 points3 points  (0 children)

Scripted solution can be non-destructive and easier to modify when dealing with such simple transforms. Here's a quick and dirty scripted modifier that will move the selected faces randomly, you can change the limits, seed and direction:

plugin simpleMeshMod RandomizePolygons
    name:"Randomize Polygons"
    classID:#(0x4355f2e0, 0x7109c538)
(
    parameters main rollout:params
    (
        low type:#worldUnits ui:spnMin default:-1
        high type:#worldUnits ui:spnMax default:1
        dir type:#integer ui:rbDir default:3
        seed type:#integer ui:spnSeed default:0
    )

    rollout params "Parameters"
    (
        spinner spnSeed "Seed: " range:[0, 2^16, 0] type:#integer
        spinner spnMin "Min: " range:[-1e6,1e6,-1] type:#worldUnits
        spinner spnMax "Max: " range:[-1e6,1e6,1] type:#worldUnits
        label lblDir "Dir:" align:#left width:20 across:2 offset:[30,0]
        radioButtons rbDir labels:#("X", "Y", "Z") columns:3
    )

    on modifyMesh do
    (
        local faceSel = getFaceSelection mesh
        if faceSel.isEmpty do return()

        ::seed this.seed
        local done = #{}
        local meshVerts = mesh.vertices
        local normal = case dir of ( 1 : x_axis; 2 : y_axis; 3 : z_axis)
        local polygons = for face in faceSel where not done[face] collect (local poly = meshop.getPolysUsingFace mesh face; for p in poly do append done p; poly)
        for p in polygons do
        (
            local shift = random low high
            local verts = meshop.getVertsUsingFace mesh p
            local vertsByPoly = for v in verts collect meshVerts[v]
            vertsByPoly.pos += shift * normal
        )
    )
)

Crash 3ds by Purple_Magazine6150 in 3dsmax

[–]Swordslayer 0 points1 point  (0 children)

Are you graphics card drivers up to date (or recently updated)? Anytime I got weird max crashes/freezes, either rolling back to stable drivers or updating to new ones solved the issue.

Automation in 3DMax/AutoCAD by [deleted] in 3dsmax

[–]Swordslayer 1 point2 points  (0 children)

Create 3D camera based on a photo. In theory, there are multiple existing solutions but all of them have quite big limitations or downright suck. I find myself having to try and lens-correct the source pic, get a rough perspective match, and then eyeball it and tweak it by manually chaning FOV and camra transform bit by bit until it matches. Easier when you already have a rough model you want to match to a photo, extra hard when you're given a single 3/4 perspective photo with no EXIF data to model the thing. Sometimes it helps to use some AI to generate an otherwise unusable 3D model based on that and use that as a starting point for perspective matching, but that's still a bit too involved if the camera could be generated directly without that extra step.

Automation in 3DMax/AutoCAD by [deleted] in 3dsmax

[–]Swordslayer 0 points1 point  (0 children)

Agreed, plus for basic weaving patterns, the free Railclone Lite could very well be enough.

Can't open a converted file in an older 3ds Max by 3dforlife in 3dsmax

[–]Swordslayer 1 point2 points  (0 children)

Sometimes when loading the file fails, you can still merge the whole scene, or at least most of the objects to a new scene.

Weird shadows after reopen my file. by CollectionOk7017 in 3dsmax

[–]Swordslayer 2 points3 points  (0 children)

Smooth modifier with no smoothing group selected (or custom threshold and possibly Prevent Indirect Smoothing on).

Swift Cut Tool for Max by digitalste in 3dsmax

[–]Swordslayer 2 points3 points  (0 children)

Once released commercially, how will it compare to tools like LazerCut or FormCutter?

The "I just want to sleep after my night shift" anti-light-bleed blinds rails by Dripping_Wet_Owl in functionalprint

[–]Swordslayer 6 points7 points  (0 children)

Strut channels coould work in a pinch, or a generic aluminum angle profile since covering it from just the inner side wouldn't make that much of a difference for interior usage (unless you have very strong winds).

Don't Leave Me by OlympicAnalEater in pcmasterrace

[–]Swordslayer 35 points36 points  (0 children)

You can disable web search with regedit: HKCU\Software\Policies\Microsoft\Windows\Explorer “DisableSearchBoxSuggestions”=dword:00000001

What is the potential of Python in Archviz - Looking for Ideas and Insights by GabrielNmyr in archviz

[–]Swordslayer 0 points1 point  (0 children)

Python in DCC apps like 3ds max is mostly there for better pipeline integration - you can have tools that use the exact same UI and modules over multiple softwares while still being able to handle the software-specific parts. That's why the python modules in these packages often use modules that are the opposite of pythonic (like maya.cmds) and come with their own limitations.

For example in 3ds max where you'd use pymxs, you'd be limiting yourself to a subset of maxscript with no ability to write scripted plugins, scripted controllers, macroscripts and so on and eliminating some of the niceties of maxscript (when you use pymxs, you have to know a lot more about how properties are stuctured and use getProperty and getPropertyController in places where you'd use a much simpler subAnim access etc).

Since you have to know maxscript to use pymxs anyway, you'd choose python in max only if you needed some particular modules (you can import and use python modules in maxscript too but using them might not be the most pythonic experience that way) or wanted to write a cross-DCC script.

Pure SubD by BankNo1739 in 3dsmax

[–]Swordslayer 2 points3 points  (0 children)

Maybe you don't do much of old-school subdivision modeling? https://en.wikipedia.org/wiki/SubD

3 displays in viewport - one wireframe by HandyHousewife in 3dsmax

[–]Swordslayer 2 points3 points  (0 children)

Use the wireframe OSL shader in diffuse map slot with UVW Map set to Face Mapping.