From d8b04b08592064f9491f2848d11b494333bb10b2 Mon Sep 17 00:00:00 2001 From: Lindsey Heagy Date: Fri, 15 May 2015 09:21:54 -0700 Subject: [PATCH] LOM --> Curv --- SimPEG/Mesh/View.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SimPEG/Mesh/View.py b/SimPEG/Mesh/View.py index b5ede21f..015b21aa 100644 --- a/SimPEG/Mesh/View.py +++ b/SimPEG/Mesh/View.py @@ -576,11 +576,11 @@ class CylView(object): def plotImage(self, *args, **kwargs): return self._plotCylTensorMesh('plotImage', *args, **kwargs) -class LomView(object): +class CurvView(object): """ - Provides viewing functions for LogicallyOrthogonalMesh + Provides viewing functions for CurvilinearMesh - This class is inherited by LogicallyOrthogonalMesh + This class is inherited by CurvilinearMesh """ def __init__(self): @@ -594,8 +594,8 @@ class LomView(object): :include-source: from SimPEG import Mesh, Utils - X, Y = Utils.exampleLomGird([3,3],'rotate') - M = Mesh.LogicallyOrthogonalMesh([X, Y]) + X, Y = Utils.exampleCurvGird([3,3],'rotate') + M = Mesh.CurvilinearMesh([X, Y]) M.plotGrid(showIt=True) """