From 9ff5259a5498e64415329e92569b4674f68a4939 Mon Sep 17 00:00:00 2001 From: Thorwin Vogt Date: Tue, 8 Sep 2020 18:33:13 +0200 Subject: [PATCH] Removed unused lines --- SEWorldGenPlugin/Draw/IRenderObject.cs | 8 +------- SEWorldGenPlugin/Draw/RenderSphere.cs | 1 - 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/SEWorldGenPlugin/Draw/IRenderObject.cs b/SEWorldGenPlugin/Draw/IRenderObject.cs index 0d220ac..6f3f8a7 100644 --- a/SEWorldGenPlugin/Draw/IRenderObject.cs +++ b/SEWorldGenPlugin/Draw/IRenderObject.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SEWorldGenPlugin.Draw +namespace SEWorldGenPlugin.Draw { public interface IRenderObject { diff --git a/SEWorldGenPlugin/Draw/RenderSphere.cs b/SEWorldGenPlugin/Draw/RenderSphere.cs index 69b2156..3d48b1f 100644 --- a/SEWorldGenPlugin/Draw/RenderSphere.cs +++ b/SEWorldGenPlugin/Draw/RenderSphere.cs @@ -22,7 +22,6 @@ public void Draw() { MatrixD wm = MatrixD.CreateWorld(m_position); MySimpleObjectDraw.DrawTransparentSphere(ref wm, m_radius, ref m_color, MySimpleObjectRasterizer.SolidAndWireframe, 100, lineMaterial: MyStringId.GetOrCompute("GizmoDrawLine"), lineThickness: 1000); - //MyRenderProxy.DebugDrawSphere(m_position, m_radius * 1.1f, m_color.ToVector3(), 1.0f, true, true); } } }