Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-07-27 01:47:39 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-07-27 01:47:39 +0400
commit0c64c49d2f930aed4ef310c2331bc3df0932cbe2 (patch)
treee863274f8326a9735dfe03cd5e7c580cd33a08cc /source/blender/freestyle/intern/app_blender
parent5718639a79b51241f348eb241d2379ade06cd787 (diff)
soc-2008-mxcurioni: added (but did not test) ViewMap and Noise classes. Updated ViewShape class accordingly
Diffstat (limited to 'source/blender/freestyle/intern/app_blender')
-rwxr-xr-xsource/blender/freestyle/intern/app_blender/Controller.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/freestyle/intern/app_blender/Controller.cpp b/source/blender/freestyle/intern/app_blender/Controller.cpp
index e2cc25c4b10..ff6ca96e657 100755
--- a/source/blender/freestyle/intern/app_blender/Controller.cpp
+++ b/source/blender/freestyle/intern/app_blender/Controller.cpp
@@ -930,7 +930,7 @@ FEdge* Controller::SelectFEdge(real x, real y)
if (!_ViewMap)
return NULL;
- FEdge *fedge = (FEdge*)_ViewMap->GetClosestFEdge(x,y);
+ FEdge *fedge = (FEdge*)_ViewMap->getClosestFEdge(x,y);
//ViewEdge *selection = fedge->viewedge();
_pView->setSelectedFEdge(fedge);
_Canvas->setSelectedFEdge(fedge);
@@ -942,7 +942,7 @@ ViewEdge* Controller::SelectViewEdge(real x, real y)
if (!_ViewMap)
return NULL;
- FEdge *fedge = (FEdge*)_ViewMap->GetClosestFEdge(x,y);
+ FEdge *fedge = (FEdge*)_ViewMap->getClosestFEdge(x,y);
ViewEdge *selection = fedge->viewedge();
_pView->setSelectedFEdge(fedge);
_Canvas->setSelectedFEdge(fedge);