Last active
April 15, 2026 17:21
-
-
Save tomspilman/a4ebec6d2f28360a96f2d6da3925eba6 to your computer and use it in GitHub Desktop.
MonoGame Logo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using Microsoft.Xna.Framework; | |
| using Microsoft.Xna.Framework.Graphics; | |
| using Microsoft.Xna.Framework.Input; | |
| namespace SpinningLogoDemo | |
| { | |
| public static class Program | |
| { | |
| static void Main() | |
| { | |
| using var game = new LogoGame(); | |
| game.Run(); | |
| } | |
| } | |
| public class LogoGame : Game | |
| { | |
| private readonly GraphicsDeviceManager _graphics; | |
| private BasicEffect _effect; | |
| private VertexPositionColor[] _logoVertices; | |
| private float _yaw; | |
| private float _pitch; | |
| private float _distance = 5.0f; | |
| public LogoGame() | |
| { | |
| _graphics = new GraphicsDeviceManager(this); | |
| Content.RootDirectory = "Content"; | |
| IsMouseVisible = false; | |
| _graphics.PreferredBackBufferWidth = 1280; | |
| _graphics.PreferredBackBufferHeight = 720; | |
| _graphics.PreferMultiSampling = true; | |
| } | |
| protected override void LoadContent() | |
| { | |
| _effect = new BasicEffect(GraphicsDevice) | |
| { | |
| VertexColorEnabled = true, | |
| LightingEnabled = false, | |
| }; | |
| _logoVertices = CreateLogoVertices(); | |
| } | |
| protected override void Update(GameTime gameTime) | |
| { | |
| var keyboard = Keyboard.GetState(); | |
| float dt = (float)gameTime.ElapsedGameTime.TotalSeconds; | |
| _yaw += dt * 0.9f; | |
| _pitch = 0.25f + (float)Math.Sin(gameTime.TotalGameTime.TotalSeconds * 0.8f) * 0.15f; | |
| if (keyboard.IsKeyDown(Keys.Up)) | |
| _distance -= dt * 1.5f; | |
| if (keyboard.IsKeyDown(Keys.Down)) | |
| _distance += dt * 1.5f; | |
| _distance = MathHelper.Clamp(_distance, 1.0f, 6.0f); | |
| base.Update(gameTime); | |
| } | |
| protected override void Draw(GameTime gameTime) | |
| { | |
| GraphicsDevice.Clear(new Color(18, 18, 22)); | |
| GraphicsDevice.BlendState = BlendState.Opaque; | |
| GraphicsDevice.DepthStencilState = DepthStencilState.Default; | |
| GraphicsDevice.RasterizerState = RasterizerState.CullNone; | |
| float aspect = GraphicsDevice.Viewport.AspectRatio; | |
| Matrix world = | |
| Matrix.CreateRotationX(_pitch) * | |
| Matrix.CreateRotationY(_yaw) * | |
| Matrix.CreateScale(2.2f); | |
| Matrix view = Matrix.CreateLookAt( | |
| new Vector3(0f, 0f, _distance), | |
| Vector3.Zero, | |
| Vector3.Up); | |
| Matrix projection = Matrix.CreatePerspectiveFieldOfView( | |
| MathHelper.ToRadians(45f), | |
| aspect, | |
| 0.01f, | |
| 100f); | |
| _effect.World = world; | |
| _effect.View = view; | |
| _effect.Projection = projection; | |
| foreach (var pass in _effect.CurrentTechnique.Passes) | |
| { | |
| pass.Apply(); | |
| GraphicsDevice.DrawUserPrimitives( | |
| PrimitiveType.TriangleList, | |
| _logoVertices, | |
| 0, | |
| _logoVertices.Length / 3); | |
| } | |
| base.Draw(gameTime); | |
| } | |
| private static VertexPositionColor[] CreateLogoVertices() | |
| { | |
| VertexPositionColor[] logoVertices = new VertexPositionColor[] | |
| { | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.326172f, 0.476562f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.171875f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.171875f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.099609f, 0.482422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.099609f, 0.482422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.048828f, 0.457031f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.048828f, 0.457031f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.046875f, 0.457031f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.097656f, 0.482422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.097656f, 0.482422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.169922f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.169922f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.287109f, 0.490234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.287109f, 0.490234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.347656f, 0.464844f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.347656f, 0.464844f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.388672f, 0.437500f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.388672f, 0.437500f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, 0.273438f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.240234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.240234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.218750f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.218750f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, 0.248047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, 0.248047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.294922f, 0.275391f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.294922f, 0.275391f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, 0.296875f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, 0.296875f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.191406f, 0.320312f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.191406f, 0.320312f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.166016f, 0.314453f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.166016f, 0.314453f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.134766f, 0.296875f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.134766f, 0.296875f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.101562f, 0.257812f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.101562f, 0.257812f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.093750f, 0.232422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.093750f, 0.232422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.113281f, 0.273438f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.113281f, 0.273438f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.144531f, 0.302734f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.144531f, 0.302734f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.218750f, 0.320312f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.218750f, 0.320312f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.263672f, 0.304688f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.263672f, 0.304688f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, 0.263672f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, 0.263672f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.320312f, 0.218750f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.320312f, 0.218750f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.185547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, -0.216797f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, -0.246094f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, -0.216797f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, -0.246094f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.435547f, -0.388672f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.435547f, -0.388672f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.402344f, -0.423828f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.402344f, -0.423828f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.324219f, -0.474609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.324219f, -0.474609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.275391f, -0.294922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, -0.261719f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.275391f, -0.294922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, -0.261719f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.349609f, -0.462891f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.349609f, -0.462891f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.390625f, -0.435547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.390625f, -0.435547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.425781f, -0.402344f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.425781f, -0.402344f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.476562f, -0.324219f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.476562f, -0.324219f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, -0.238281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, -0.238281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, 0.240234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, 0.240234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.490234f, 0.289062f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.490234f, 0.289062f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.464844f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.464844f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.437500f, 0.390625f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.326172f, 0.476562f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.171875f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.099609f, 0.482422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.171875f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.048828f, 0.457031f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.099609f, 0.482422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.048828f, 0.457031f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.097656f, 0.482422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.046875f, 0.457031f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.169922f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.097656f, 0.482422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.169922f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.287109f, 0.490234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.347656f, 0.464844f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.287109f, 0.490234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.388672f, 0.437500f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.347656f, 0.464844f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.388672f, 0.437500f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.240234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, 0.273438f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.240234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.218750f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, 0.248047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.218750f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.294922f, 0.275391f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, 0.248047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, 0.296875f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.294922f, 0.275391f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, 0.296875f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.191406f, 0.320312f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.166016f, 0.314453f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.191406f, 0.320312f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.134766f, 0.296875f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.166016f, 0.314453f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.101562f, 0.257812f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.134766f, 0.296875f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.101562f, 0.257812f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.093750f, 0.232422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.113281f, 0.273438f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.093750f, 0.232422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.144531f, 0.302734f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.113281f, 0.273438f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.144531f, 0.302734f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.218750f, 0.320312f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.263672f, 0.304688f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.218750f, 0.320312f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, 0.263672f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.263672f, 0.304688f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.320312f, 0.218750f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, 0.263672f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.320312f, 0.218750f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.185547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, -0.216797f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, -0.216797f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, -0.246094f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, -0.246094f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.435547f, -0.388672f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.402344f, -0.423828f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.435547f, -0.388672f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.324219f, -0.474609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.402344f, -0.423828f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.324219f, -0.474609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.275391f, -0.294922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.275391f, -0.294922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, -0.261719f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, -0.261719f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.349609f, -0.462891f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.390625f, -0.435547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.349609f, -0.462891f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.425781f, -0.402344f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.390625f, -0.435547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.476562f, -0.324219f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.425781f, -0.402344f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, -0.238281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.476562f, -0.324219f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, 0.240234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, -0.238281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.490234f, 0.289062f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, 0.240234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.464844f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.490234f, 0.289062f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.437500f, 0.390625f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.464844f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.326172f, 0.476562f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.326172f, 0.476562f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.326172f, 0.476562f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.171875f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.171875f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.171875f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.171875f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.099609f, 0.482422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.099609f, 0.482422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.171875f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.099609f, 0.482422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.171875f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.099609f, 0.482422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.048828f, 0.457031f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.048828f, 0.457031f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.099609f, 0.482422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.048828f, 0.457031f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.099609f, 0.482422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.048828f, 0.457031f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.048828f, 0.457031f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.048828f, 0.457031f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.046875f, 0.457031f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.046875f, 0.457031f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.046875f, 0.457031f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.000000f, 0.419922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.046875f, 0.457031f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.097656f, 0.482422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.097656f, 0.482422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.046875f, 0.457031f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.097656f, 0.482422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.046875f, 0.457031f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.097656f, 0.482422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.169922f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.169922f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.097656f, 0.482422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.169922f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.097656f, 0.482422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.169922f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.169922f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.169922f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.287109f, 0.490234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.287109f, 0.490234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, 0.500000f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.287109f, 0.490234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, 0.500000f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.287109f, 0.490234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.347656f, 0.464844f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.347656f, 0.464844f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.287109f, 0.490234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.347656f, 0.464844f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.287109f, 0.490234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.347656f, 0.464844f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.388672f, 0.437500f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.388672f, 0.437500f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.347656f, 0.464844f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.388672f, 0.437500f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.347656f, 0.464844f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.388672f, 0.437500f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.388672f, 0.437500f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.388672f, 0.437500f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.423828f, 0.404297f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, 0.273438f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, 0.273438f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, 0.273438f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, 0.273438f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.240234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.240234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, 0.273438f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.240234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, 0.273438f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.240234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.240234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.240234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.218750f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.218750f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.218750f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.218750f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, 0.248047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, 0.248047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.218750f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, 0.248047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, 0.218750f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, 0.248047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.294922f, 0.275391f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.294922f, 0.275391f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, 0.248047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.294922f, 0.275391f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, 0.248047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.294922f, 0.275391f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, 0.296875f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, 0.296875f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.294922f, 0.275391f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, 0.296875f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.294922f, 0.275391f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, 0.296875f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, 0.296875f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, 0.296875f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.191406f, 0.320312f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.191406f, 0.320312f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.191406f, 0.320312f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.228516f, 0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.191406f, 0.320312f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.166016f, 0.314453f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.166016f, 0.314453f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.191406f, 0.320312f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.166016f, 0.314453f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.191406f, 0.320312f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.166016f, 0.314453f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.134766f, 0.296875f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.134766f, 0.296875f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.166016f, 0.314453f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.134766f, 0.296875f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.166016f, 0.314453f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.134766f, 0.296875f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.101562f, 0.257812f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.101562f, 0.257812f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.134766f, 0.296875f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.101562f, 0.257812f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.134766f, 0.296875f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.101562f, 0.257812f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.101562f, 0.257812f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.101562f, 0.257812f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.222656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.089844f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.093750f, 0.232422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.093750f, 0.232422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, 0.068359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.093750f, 0.232422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, 0.068359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.093750f, 0.232422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.113281f, 0.273438f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.113281f, 0.273438f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.093750f, 0.232422f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.113281f, 0.273438f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.093750f, 0.232422f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.113281f, 0.273438f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.144531f, 0.302734f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.144531f, 0.302734f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.113281f, 0.273438f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.144531f, 0.302734f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.113281f, 0.273438f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.144531f, 0.302734f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.144531f, 0.302734f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.144531f, 0.302734f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.218750f, 0.320312f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.218750f, 0.320312f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.218750f, 0.320312f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.167969f, 0.314453f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.218750f, 0.320312f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.263672f, 0.304688f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.263672f, 0.304688f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.218750f, 0.320312f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.263672f, 0.304688f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.218750f, 0.320312f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.263672f, 0.304688f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, 0.263672f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, 0.263672f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.263672f, 0.304688f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, 0.263672f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.263672f, 0.304688f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, 0.263672f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.320312f, 0.218750f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.320312f, 0.218750f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, 0.263672f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.320312f, 0.218750f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, 0.263672f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.320312f, 0.218750f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.320312f, 0.218750f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.320312f, 0.218750f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, -0.261719f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, -0.261719f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, -0.261719f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.318359f, -0.228516f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, -0.261719f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.275391f, -0.294922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.275391f, -0.294922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, -0.261719f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.275391f, -0.294922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.304688f, -0.261719f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.275391f, -0.294922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.275391f, -0.294922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.275391f, -0.294922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.230469f, -0.316406f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.216797f, -0.318359f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.246094f, -0.310547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, -0.246094f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, -0.246094f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, -0.246094f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.273438f, -0.294922f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, -0.246094f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, -0.216797f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, -0.216797f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, -0.246094f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, -0.216797f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.310547f, -0.246094f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, -0.216797f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, -0.216797f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.318359f, -0.216797f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.185547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.185547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.185547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.316406f, -0.185547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.185547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.185547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.185547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.091797f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.005859f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.498047f, -0.238281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.492188f, -0.271484f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.435547f, -0.388672f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.435547f, -0.388672f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.435547f, -0.388672f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.462891f, -0.347656f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.435547f, -0.388672f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.402344f, -0.423828f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.402344f, -0.423828f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.435547f, -0.388672f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.402344f, -0.423828f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.435547f, -0.388672f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.402344f, -0.423828f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.324219f, -0.474609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.324219f, -0.474609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.402344f, -0.423828f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.324219f, -0.474609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.402344f, -0.423828f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.324219f, -0.474609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.324219f, -0.474609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.324219f, -0.474609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(0.238281f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.240234f, -0.498047f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.349609f, -0.462891f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.349609f, -0.462891f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.349609f, -0.462891f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.289062f, -0.488281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.349609f, -0.462891f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.390625f, -0.435547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.390625f, -0.435547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.349609f, -0.462891f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.390625f, -0.435547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.349609f, -0.462891f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.390625f, -0.435547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.425781f, -0.402344f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.425781f, -0.402344f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.390625f, -0.435547f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.425781f, -0.402344f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.390625f, -0.435547f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.425781f, -0.402344f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.476562f, -0.324219f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.476562f, -0.324219f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.425781f, -0.402344f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.476562f, -0.324219f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.425781f, -0.402344f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.476562f, -0.324219f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, -0.238281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, -0.238281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.476562f, -0.324219f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, -0.238281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.476562f, -0.324219f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, -0.238281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, 0.240234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, 0.240234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, -0.238281f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, 0.240234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, -0.238281f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, 0.240234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.490234f, 0.289062f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.490234f, 0.289062f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, 0.240234f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.490234f, 0.289062f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.500000f, 0.240234f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.490234f, 0.289062f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.464844f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.464844f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.490234f, 0.289062f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.464844f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.490234f, 0.289062f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.464844f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.437500f, 0.390625f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.437500f, 0.390625f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.464844f, 0.349609f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.437500f, 0.390625f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.464844f, 0.349609f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.437500f, 0.390625f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.437500f, 0.390625f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.437500f, 0.390625f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.326172f, 0.476562f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.326172f, 0.476562f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, -0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.326172f, 0.476562f, 0.160000f), new Color(231, 60, 0)), | |
| new VertexPositionColor(new Vector3(-0.404297f, 0.425781f, 0.160000f), new Color(231, 60, 0)), | |
| }; | |
| return logoVertices; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment