Chimera
Built in 1989, Chimera includes a range of bowls and spoons methacrylate that can be used for salads. The line was designed for Guzzini brothers.

Model
View codeModels were constructed using as main functions Bezier and Rotational Surface.

The first image shows the profile of the bowls achieved with Bezier. The second image shows instead the solid of rotation obtained by applying the function Rotational Surface to the profile's curve. The following example shows the code for creating a solid of rotation:
/* funzione che crea un solido di rotazione */
function creaSolidoRotazione(c1,dom){
var mapping = ROTATIONAL_SURFACE(c1);
var solido = MAP(mapping)(dom);
return solido;
};
Using the same function shown above have been made the spoons and the lid of the larger bowl.

