At the path Assets/CurvedPoly/Assets/Primites you will find a set of 28 Premade Curved Poly model which should be your starting point every time you need to shape a new Model. Curved Poly - Shape Editor does not allow you to add polygons or edges to the model, so I tried to put together a good set of instrument to start. Primitives cover both closed surfaces and a little set of opened surfaces. Here a summary of them:
In the Demo folder (Assets/CurvedPoly/Demo) you will find two important Demo Scene called PrimitivesDisplayPartA and PrimitivesDisplayPartB. The two demos show all the primitives at once (Sphere, Circle, Cylinders and Donuts in the first; Boxes, Plates and Quads in the second). For each primitive an entire array of Game Object is shown, where each GameObject will have a different LoD applied. If you start editing one of the primitives from one of the GameObjects, you will see that changes are applied on all gameobjects at once.
There are a few demo objects which you can use to take inspiration and that you can even import and use in place of primitives, even if they are all derived by one or more of the Primitives discussed in the previous section. The Curved Poly Assets for this objects are located in Assets/CurvedPoly/Demo/Models.
Some of these objects are a composition of more geometric parts, so I also have a set of Prefabs which show the result of the composition. Such prefabs are located in Assets/CurvedPoly/Demo/Prefabs. You will also find a set of simple materials (all derived from Unity Standard Shader) in Assets/CurvedPoly/Demo/Materials that I only use for demo purposes.
If you want to see all the Shaped Examples at once, you will find a complete scene in the Demo folder called Shaped Examples.
The Demo LodsGroupDemo will show you how to use Unity LODGroups together with CurvedPoly. You can do this by following this steps:
The Demo Scene called RuntimeLoDs will show you how to change LoDs at runtime. The core of the demo is a simple script you can find at Assets/CurvedPoly/Demo/Scripts/ChangeLodIndex.cs. The script contains two simple methods which increase/decrease the LoDIndex of a set of assigned CurvedPoly behaviour, so that you can control tessellation.
The scene has some Curved Poly and two buttons. In Play mode, you can see that pressing the buttons will change the tessellation on all the models.