~ubuntu-branches/ubuntu/maverick/freecad/maverick

« back to all changes in this revision

Viewing changes to src/Mod/Part/App/PropertyTopoShape.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV
  • Date: 2010-01-11 08:48:33 UTC
  • mfrom: (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100111084833-4g9vgdqbkw8u34zb
Tags: 0.9.2646.5-1
* New upstream version (closes: #561696).
* Added swig to Build-Depends (closes: #563523, #563772).
* Removed python-opencv from Build-Depends and Recommends (closes: #560768).

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
    /** @name Modification */
59
59
    //@{
60
60
    /// Transform the real shape data
61
 
    void transform(const Base::Matrix4D &rclMat);
 
61
    void transformGeometry(const Base::Matrix4D &rclMat);
62
62
    //@}
63
63
 
64
64
    /** @name Getting basic geometric entities */
98
98
 * @author Werner Mayer
99
99
 */
100
100
struct AppPartExport FilletElement {
101
 
    int hashval;
 
101
    int edgeid;
102
102
    double radius1, radius2;
103
103
};
104
104
 
105
 
class AppPartExport PropertyFilletContour : public App::PropertyLists
 
105
class AppPartExport PropertyFilletEdges : public App::PropertyLists
106
106
{
107
107
    TYPESYSTEM_HEADER();
108
108
 
109
109
public:
110
 
    PropertyFilletContour();
111
 
    ~PropertyFilletContour();
 
110
    PropertyFilletEdges();
 
111
    ~PropertyFilletEdges();
112
112
 
113
113
    virtual void setSize(int newSize) {
114
114
        _lValueList.resize(newSize);