Villa Chiericati Plasm 3D Model

Final project of Computational Graphics course by Daniele Spidalieri, mat.266491

Introduction

In 1546, three brothers of Chiericati family divided the family holdings between them. Two of the brothers became patrons of Palladio: Girolamo Chiericati commissioned Palladio to build the imposing Palazzo Chiericati, in Vicenza, today the Museo Civico, and Giovanni Chiericati commissioned Palladio to build the Villa Chiericati. The villa is located in Vancimuglio in the province of Vicenza. It was probably designed in the late 1540s, and was under construction by 1554. When Giovanni died 1558, the villa was still without a roof or colonnades. In 1574, the property was purchased by Ludovico Porto, who had the villa completed by 1584 by Domenico Groppino, a local architect. In the following years the villa has suffered various changes to make it like as it is today. Now Villa Chiericati is included in the World Heritage Site City of Vicenza and the Palladian Villas of the Veneto, by Unesco.

villa

Project description

The project that I developed is based on the plans of the Italian architect Ottavio Bertotti Scamozzi in 1781, with few little changes at my leisure, where I found no references or documentation, like the internal stairs, corridors and some decorations. Villa Chiericati is characterized by Palladio’s usual tripartite division, but here the deep projecting loggia completely dominates the facade. This is Palladio’s first use of a true temple front proceding from the main body of the house, an element know in classical architecture as a pronaos. The rest of the villa is based on a rectangular plan with two floors built above a semi-basement.

plan1

plan2

plan3

Hierarchical/Model decomposition

For implement a 3D model of the villa I have decided to divide it into six hierarchical parts with an bottom-up approach:

All of these parts was then decomposed in sub-parts that assembled together through translation, rotations and duplications functions. I also decided to take advantage of the symmetry of the plan to create an half part and build the other half just reverting it.

Implementation

The project was implemented using Javascript and Plasm framework.

Basement

The basement is composed by the villa base, the main stairs, the atrium base and the pavement of the first floor. The villa base has been created using SIMPLEX_GRID function while the pavement, using CUBOID function. For the atrium base I used SIMPLEX_GRID and BEZIER curves for atrium base arches. The main stairs have been implemented through a function that I have personally developed. At the end, the wall of the main stairs has been created using SIMPLICIAL_COMPLEX function.

base1 base2

First Floor

The first floor is composed by external and internal walls that have been created using SIMPLEX_GRID function.

int1

I have implemented also a simple internal stair using the alternative version of the above mentioned stairs function.

int2

int3

Second Floor

The second floor is composed by the superior pavement, internal superior walls and another stair.

int4

The walls has been implemented by SIMPLEX_GRID and SIMPLICIAL_COMPLEX.

int4

Atrium

The atrium was one of the hardest parts of the project. It is composed by the atrium arch, the columns and the tympanum. The atrium arch is made by BEZIER curves while the tympanum is a mix of CUBOID and SIMPLICIAL_COMPLEX.

atr1

The columns were created using CYL_SURFACE for the shaft, CUBOID, CUBIC_HERMITE and ROTATIONAL_SURFACE functions for the base and BEZIER for the capital.

atr2

Roof

I have decide to divide the roof in three parts(front,side,rear). All the three parts were created using SIMPLICIAL_COMPLEX function.

roof

Decorations

The decorations that I have decided to implement have been various: the internal and external frames, the windows fixtures, the balcony, the banister, the doors and the statues. The internal and external frames include the low, mid and top external frames, the windows and doors frames, the internal room frames and the atrium frames. All of them have been developed with SIMPLEX_GRID function and with the CUBIC_HERMITE function for the windows and door fixtures.

dec1

dec2

The balcony, the banister and the doors were implemented by SIMPLEX_GRID and CUBOID functions.

dec3

The statues have been made by creating a very simplified model, using BEZIER, CUBIC_HERMITE and ROTATIONAL_SURFACE with CUBOID for the base.

dec4

Special Functions

To add more functionality, I have decided to implement some new functions that allow to interact with the project in runtime, simply by invoking them from the console:

Gallery