Exm2
# Mesh example: More geometry
This example is from from Calfem for Pyhon Mesh Manual (Mesh_Ex_02.py)
Creating geometry from B-Splines and circle arcs. Also shows how to set
ID numbers for geometry entities and how to specify element density.
**Define geometry**
All mesh generation starts by creating a Geometry object.
**Add points**
In this example we set the IDs manually.
elSize determines the size of the elements near this point.
elSize is 1 by default. Larger number means less dense mesh. Size means
the length of the sides of the elements.
**Add curves**
The 3 points that define the circle arc are \[start, center, end\]. The
arc must be smaller than Pi.
BSplines are similar to Splines, but do not necessarily pass through the
control points.
**Add surfaces**
Markers do not have to be set when the curve is created. It can be done
afterwards. Set marker=80 for curves 2 and 4:
**Generate mesh**
Create a mesh object and set its attributes.
Create the finite element mesh using the create() method of the mesh
object.
**Visualise mesh**
***Draw geometry***

**Draw mesh**