Time for annual reports

Comment

Time for annual reports

Just finished with Norges Klimastiftelse Årsrapport 2022 design. This is a web annual report that has clickable links but still possible to print and still be able to get a hold of the content.

Norges Klimastiftelsen or Norwegian the climate foundation work for a society without emissions of man-made greenhouse gases, and always interesting what they do and really glad to help.

Take a look at these examples, made with my own package called PolarWhite.

And see the pdf annual report here

Comment

Stacc Brand Video

Comment

Stacc Brand Video

Stacc is a Norwegian fintech company with more than 30 years of experience delivering digital solutions and consulting services to banks, asset finance providers, insurance companies, pension funds, family offices and the public sector in the Nordics.

Stacc combines financial technology with design and strategic know-how. We're fast, we understand, we help you do the right things the right way. We enable financial services to innovate, surprise and excite.

I’m really happy how the project came along, and happy to make a second video for the guys :)

Producer: Jørgen Håland, JHåland
Photography (people moving): Jørgen Håland
Stock: Artgrid
Motion Graphics: Jørgen Håland, Julian Forthun
VFX and Color Grade: Jørgen Håland
Edit: Jørgen Håland
Voice: OnlineVoices
Music: MusicVine

Comment

Parking System

Comment

Parking System

I created this video for Hi Tech Mobility

For the project I got help from Ørjan Andressen on photography, so I could concentrate on my role as producer.

I’m very pleased with the result and I got a really happy customer too.

Producer: Jørgen Håland, JHåland
Photography: Ørjan Andreassen
VFX and Color Grade: Jørgen Håland
Edit: Jørgen Håland
Music: MusicVine

Comment

Create your own short cuts in Cinema 4d

Comment

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