Follow my Journal — JHåland — Motion Branding — Animerte Merkevarer

Viewing entries tagged
c4d

Create your own short cuts in Cinema 4d

Comment

Share

Create your own short cuts in Cinema 4d

I had to make a new tutorial. And it’s been a long time since I’ve done it, and also testing a new setup.
This is more or less for me to remember how to do simple scripts in c4d.

In this tutorial I show how I create simple scripts without knowing much about scripting in Python.

In the script we are picking your objects, and do different functions; like closing a spline, creating extrude nurb and changing some settings and so on. Remember Python is indent sensitive so be aware of that :)

    objects = doc.GetActiveObjects(1)
    for obj in objects:
        obj[c4d.SPLINEOBJECT_CLOSED] = 1
        c4d.EventAdd()
# Extrude
    objects = doc.GetActiveObjects(1)
    c4d.CallCommand(5116) # Extrude
    
    objects = doc.GetActiveObjects(1)
    for obj in objects:
        obj[c4d.EXTRUDEOBJECT_EXTRUSIONOFFSET] = 0

    c4d.EventAdd()
# Remesh
    objects = doc.GetActiveObjects(1)
    c4d.CallCommand(1054750) # Remesh
    
    objects = doc.GetActiveObjects(1)
    for obj in objects:
        obj[c4d.ID_REMESH_POLYGONTARGET_MODE] = 0
        obj[c4d.ID_REMESH_QUADREMESH_ADAPTIVENESS] = 0

    c4d.EventAdd()

Comment

Share

Oslow

Comment

Share

Oslow

Another project I’ve done with Metric

Metric is one of the masters of packaging in Norway, and this time is for a Organic Wine Spritzer.

“Oslow is a lightly sparkling spritzer. It pairs organic Italian white wine with organic fruit juice. Developed by Arcus Wine Brands.”

Illustrations: Douglas Schneider

Oslow_can_peach.jpg
OSLOW - Duo - Stort format - JHåland -diff.jpg
OSLOW - Duo - Stort format - JHåland -wire.jpg

Comment

Share

Why I returned a Dell XPS 15 - 2017 model

Comment

Share

Why I returned a Dell XPS 15 - 2017 model

I have researched for a new laptop computer for a while, maybe two months. As usual I don't make any hasty decisions for my tools. For years I've been using a MacBook Pro 2011 laptop, it's still in use, but it's time to let it go.

I use Cinema 4D, and the future of 3D renders seems to go ta a GPU accelerated, or a combination with GPU+CPU. My need for a future proof computer is important and that's why the new Macs are useless, to old specs and not future proof. My next computer needs to have some sort of CUDA cores, that's a NVidia technology, and are not on the Macs. On the new Macs they've also gotten rid of that MagSafe, that has been a really smart safety function (been used so many times, not on purpose), and the touch bar seems useless to me.

So I found a work horse, that has everything I need for the future and more. A Dell XPS 15, 4k screen, 32 GB ram and other high specs. But sadly without a MagSafe function, but I can live without that.

I'm used to a MacBook pro and it's build quality and I were shocked how crappy the touch pad were. The Dell XPS 15 picked up fingers that weren't even touching the pad, and often it didn't recognize that I were using the pad at all and I had to drag and drag to get it started. The XPS also has a touch screen that work really well, and since that were so great it demonstrated clearly my frustration with how useless the touch pad were. This irritated more and more.

The material of the computer of it's felt really cheap plasticy. I knew it were plastic, but it's worse then expected from all the review I've read. Not exactly Mac quality.

And the worst problem. Cinema 4D, my main program for work, on Windows 10 in 4K resolution, it's so blurry. Yes, everything is so soft and impossible to look at it's hurting my eyes. It turned out that the way windows is "zooming" doesn't work with C4D and the program isn't ready for 4K yet. A Windows 10 problem, I've seen it on MacOS and it looks good on retina-screen. There's also so many functions native in Windows 10 that isn't ready for 4k resolution either, so the whole OS has a design flaw. I would recommend not to buy a Windows 10 with an 4k screens yet.

Happily I could return the computer without any problem.

Now I just need to find a new laptop.

 

Comment

Share

Alternative Shapes in Cinema 4D

Comment

Share

Alternative Shapes in Cinema 4D

 

In this tutorial I show how you can create alternative forms with different deformers and object tools. I also show how you can work with Dual Graph (voronoi) procedurally.

By using some easy tricks you can create many different forms.

dual graph: http://www.entagma.com/dualgraph-a-voronoi-remeshing-plugin-for-cinema4d/

In this tutorial I show how you can create alternative forms with different deformers and object tools. I also show how you can work with Dual Graph (voronoi) procedurally. By using some easy tricks you can create many different forms. dual graph: http://www.entagma.com/dualgraph-a-voronoi-remeshing-plugin-for-cinema4d/

 

Comment

Share

Speed uv-mapping in Cinema 4D

Comment

Share

Speed uv-mapping in Cinema 4D

 

In this tutorial I show my main workflow for UV-mapping or UV-unwrapping. This is for you who need to fix a ready made model with out or bad UVs.

To show the versatility of the technique I unwrap two different models, one box shaped model and one curve shaped model.

But the real speed trick is to set up your startup layout ready for unwrapping.

Since these are two models form the internet I don't really know how they are made. I have to fix bad normals, remove triangles, get weird flipped polygons, do some simple model fixing with pentool, untriangulate the mesh and then do the UV-mapping. I also get messages that says the model has bad polygons and more.

For the UV-mapping I often us the box algorithm. If that doesn't work I use frontal projection. For curved models it's best to cut the models in different parts by selecting the edge. I then use frontal and then I unwrap/relax the UV.

 

Comment

Share