| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| * Copyright (c) 2013, Regents of the University of California |
| * BSD license, See the LICENSE file for more information |
| * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu> |
| * Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| virtual void setOneLevelLayout(std::vector<Coordinate> &childNodesCo){}; |
| void setSiblingDistance(int d) {m_siblingDistance = d;} |
| void setLevelDistance(int d) {m_levelDistance = d;} |
| int getSiblingDistance() {return m_siblingDistance;} |
| int getLevelDistance() {return m_levelDistance;} |
| class OneLevelTreeLayout: public TreeLayout |
| virtual void setOneLevelLayout(std::vector<Coordinate> &childNodesCo); |
| virtual ~OneLevelTreeLayout(){} |