From cbc3f5b57a98281f40c209e2a754c2e1e5a757f0 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 20 Oct 2018 11:42:36 -0700 Subject: [PATCH] Move math modules to their own group --- Metaballs.xcodeproj/project.pbxproj | 12 ++++++++++-- MetaballsKit/{ => Math}/Geometry.swift | 0 MetaballsKit/{ => Math}/Math.swift | 0 3 files changed, 10 insertions(+), 2 deletions(-) rename MetaballsKit/{ => Math}/Geometry.swift (100%) rename MetaballsKit/{ => Math}/Math.swift (100%) diff --git a/Metaballs.xcodeproj/project.pbxproj b/Metaballs.xcodeproj/project.pbxproj index 877c2f9..e81f326 100644 --- a/Metaballs.xcodeproj/project.pbxproj +++ b/Metaballs.xcodeproj/project.pbxproj @@ -155,6 +155,15 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + C0896C28217BAE8900639137 /* Math */ = { + isa = PBXGroup; + children = ( + C0CE7BFF1F362C3F001516B6 /* Geometry.swift */, + C0FF7C9C216A6DE00081B781 /* Math.swift */, + ); + path = Math; + sourceTree = ""; + }; C0943E7E2173F669000CA76A /* Shaders */ = { isa = PBXGroup; children = ( @@ -227,9 +236,8 @@ C0BBE3A31F2E81C700E68524 /* Metaballs.swift */, C0FF7CC1217020820081B781 /* MarchingSquares.swift */, C0943E7E2173F669000CA76A /* Shaders */, - C0CE7BFF1F362C3F001516B6 /* Geometry.swift */, + C0896C28217BAE8900639137 /* Math */, C0DF1D781F3789DC0038B0A0 /* Memory.swift */, - C0FF7C9C216A6DE00081B781 /* Math.swift */, C04CDEB121730A820018C4DA /* Rect.swift */, C0BBE3AB1F2E941200E68524 /* Renderer.swift */, C0B906D41F45432700B5F89B /* Preferences.swift */, diff --git a/MetaballsKit/Geometry.swift b/MetaballsKit/Math/Geometry.swift similarity index 100% rename from MetaballsKit/Geometry.swift rename to MetaballsKit/Math/Geometry.swift diff --git a/MetaballsKit/Math.swift b/MetaballsKit/Math/Math.swift similarity index 100% rename from MetaballsKit/Math.swift rename to MetaballsKit/Math/Math.swift