├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── assets ├── CodingforEngineers.jpg └── examples.jpg └── code ├── AnimatedObject └── AnimatedObject.cs ├── Assets ├── Fractal.tga ├── LEAP71.tga └── PicoGK.tga ├── Coding4Engineers.csproj ├── Coding4Engineers.sln ├── Program.cs ├── chapter_02 └── chapter_02.cs ├── chapter_04 └── chapter_04.cs ├── chapter_05 └── chapter_05.cs ├── chapter_06 └── chapter_06.cs ├── chapter_07 └── chapter_07.cs ├── chapter_08 └── chapter_08.cs ├── chapter_09 └── chapter_09.cs ├── chapter_10 └── chapter_10.cs ├── chapter_11 └── chapter_11.cs ├── chapter_12 └── chapter_12.cs ├── chapter_13 └── chapter_13.cs ├── chapter_14 └── chapter_14.cs ├── chapter_15 └── chapter_15.cs ├── chapter_16 └── chapter_16.cs ├── chapter_17 ├── BaseBox.cs ├── Face.cs ├── Grid.cs ├── SurfaceModulation.cs └── chapter_17.cs ├── chapter_18 ├── BaseCylinder.cs ├── Contour2D.cs ├── LocalFrame.cs ├── Modulation.cs └── chapter_18.cs ├── chapter_19 └── chapter_19.cs ├── chapter_20 └── chapter_20.cs ├── chapter_21 └── chapter_21.cs └── chapter_22 └── chapter_22.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/README.md -------------------------------------------------------------------------------- /assets/CodingforEngineers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/assets/CodingforEngineers.jpg -------------------------------------------------------------------------------- /assets/examples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/assets/examples.jpg -------------------------------------------------------------------------------- /code/AnimatedObject/AnimatedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/AnimatedObject/AnimatedObject.cs -------------------------------------------------------------------------------- /code/Assets/Fractal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/Assets/Fractal.tga -------------------------------------------------------------------------------- /code/Assets/LEAP71.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/Assets/LEAP71.tga -------------------------------------------------------------------------------- /code/Assets/PicoGK.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/Assets/PicoGK.tga -------------------------------------------------------------------------------- /code/Coding4Engineers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/Coding4Engineers.csproj -------------------------------------------------------------------------------- /code/Coding4Engineers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/Coding4Engineers.sln -------------------------------------------------------------------------------- /code/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/Program.cs -------------------------------------------------------------------------------- /code/chapter_02/chapter_02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_02/chapter_02.cs -------------------------------------------------------------------------------- /code/chapter_04/chapter_04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_04/chapter_04.cs -------------------------------------------------------------------------------- /code/chapter_05/chapter_05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_05/chapter_05.cs -------------------------------------------------------------------------------- /code/chapter_06/chapter_06.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_06/chapter_06.cs -------------------------------------------------------------------------------- /code/chapter_07/chapter_07.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_07/chapter_07.cs -------------------------------------------------------------------------------- /code/chapter_08/chapter_08.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_08/chapter_08.cs -------------------------------------------------------------------------------- /code/chapter_09/chapter_09.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_09/chapter_09.cs -------------------------------------------------------------------------------- /code/chapter_10/chapter_10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_10/chapter_10.cs -------------------------------------------------------------------------------- /code/chapter_11/chapter_11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_11/chapter_11.cs -------------------------------------------------------------------------------- /code/chapter_12/chapter_12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_12/chapter_12.cs -------------------------------------------------------------------------------- /code/chapter_13/chapter_13.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_13/chapter_13.cs -------------------------------------------------------------------------------- /code/chapter_14/chapter_14.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_14/chapter_14.cs -------------------------------------------------------------------------------- /code/chapter_15/chapter_15.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_15/chapter_15.cs -------------------------------------------------------------------------------- /code/chapter_16/chapter_16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_16/chapter_16.cs -------------------------------------------------------------------------------- /code/chapter_17/BaseBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_17/BaseBox.cs -------------------------------------------------------------------------------- /code/chapter_17/Face.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_17/Face.cs -------------------------------------------------------------------------------- /code/chapter_17/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_17/Grid.cs -------------------------------------------------------------------------------- /code/chapter_17/SurfaceModulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_17/SurfaceModulation.cs -------------------------------------------------------------------------------- /code/chapter_17/chapter_17.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_17/chapter_17.cs -------------------------------------------------------------------------------- /code/chapter_18/BaseCylinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_18/BaseCylinder.cs -------------------------------------------------------------------------------- /code/chapter_18/Contour2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_18/Contour2D.cs -------------------------------------------------------------------------------- /code/chapter_18/LocalFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_18/LocalFrame.cs -------------------------------------------------------------------------------- /code/chapter_18/Modulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_18/Modulation.cs -------------------------------------------------------------------------------- /code/chapter_18/chapter_18.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_18/chapter_18.cs -------------------------------------------------------------------------------- /code/chapter_19/chapter_19.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_19/chapter_19.cs -------------------------------------------------------------------------------- /code/chapter_20/chapter_20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_20/chapter_20.cs -------------------------------------------------------------------------------- /code/chapter_21/chapter_21.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_21/chapter_21.cs -------------------------------------------------------------------------------- /code/chapter_22/chapter_22.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinKayser/Coding4Engineers/HEAD/code/chapter_22/chapter_22.cs --------------------------------------------------------------------------------