mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
13a2874db9
create traditional hand-drawn animation (cartoon) using both bitmap and vector graphics. WWW: http://www.les-stooges.org/pascal/pencil PR: ports/122827 Submitted by: Ganael Laplanche <ganael.laplanche at martymac.com>
27 lines
856 B
C++
27 lines
856 B
C++
/*
|
|
|
|
Pencil - Traditional Animation Software
|
|
Copyright (C) 2005-2007 Patrick Corrieri & Pascal Naidon
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation;
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
*/
|
|
#include "object.h"
|
|
|
|
void initialise() {
|
|
// nothing, for now
|
|
}
|
|
|
|
void Object::exportMovie(int startFrame, int endFrame, QMatrix view, Layer* currentLayer, QSize exportSize, QString filePath, int fps) {
|
|
QMessageBox assembling("Export",tr("Not supported yet on this platform..."),QMessageBox::Information,0,0,0);
|
|
assembling.show();
|
|
// nothing
|
|
}
|