style(demos): file-scoped namespace + reindent DemoPickable

This commit is contained in:
iamboss 2026-06-27 19:16:45 +08:00
parent 523d1b6733
commit 3c4f552d5a

View File

@ -2,8 +2,8 @@
using Hi.Geom; using Hi.Geom;
using System; using System;
namespace Sample.Disp namespace Sample.Disp;
{
/// <summary> /// <summary>
/// Demonstrates creation of pickable 3D geometry at the primitive level. /// Demonstrates creation of pickable 3D geometry at the primitive level.
/// Shows how to assign picking IDs directly to geometry vertices and create interactive triangles. /// Shows how to assign picking IDs directly to geometry vertices and create interactive triangles.
@ -56,6 +56,3 @@ namespace Sample.Disp
DemoUtil.RunApplication("DemoPickable", new DemoPickable()); DemoUtil.RunApplication("DemoPickable", new DemoPickable());
} }
} }
}