X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=sixth-3d.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fgui%2FViewContext.java;h=be949c8fd35df44ec4b481d747f119645888e046;hp=b3e66e35fc3387528127752c0ea9479fd9f23542;hb=2cd3c98e74949045cdab5a54bdf2693d3dc6dbab;hpb=6213716671ccab6b7256de41838e1f5401ce173c diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/gui/ViewContext.java b/src/main/java/eu/svjatoslav/sixth/e3d/gui/ViewContext.java index b3e66e3..be949c8 100644 --- a/src/main/java/eu/svjatoslav/sixth/e3d/gui/ViewContext.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/gui/ViewContext.java @@ -1,10 +1,10 @@ /* - * Sixth - System for data storage, computation, exploration and interaction. - * Copyright ©2012-2016, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu - * + * Sixth 3D engine. Copyright ©2012-2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU Lesser General Public License * or later as published by the Free Software Foundation. + * */ package eu.svjatoslav.sixth.e3d.gui; @@ -22,12 +22,12 @@ public class ViewContext { private final Avatar avatar = new Avatar(); - private final View view; + private final ViewPanel viewPanel; private final ShapeCollection rootShapeCollection = new ShapeCollection(); - public ViewContext(final View view) { - this.view = view; + public ViewContext(final ViewPanel viewPanel) { + this.viewPanel = viewPanel; } public Avatar getAvatar() { @@ -46,8 +46,8 @@ public class ViewContext { return userInputTracker; } - public View getView() { - return view; + public ViewPanel getViewPanel() { + return viewPanel; } }