⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 geom_pkg.cpp

📁 独立flash播放器!This the developer’s wiki for Gnash and related projects. Content on these pages may not
💻 CPP
字号:
// geom_pkg.cpp:  ActionScript "flash.geom" package, for Gnash.// //   Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.// // 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; either version 3 of the License, or// (at your option) any later version.// // 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.//// You should have received a copy of the GNU General Public License// along with this program; if not, write to the Free Software// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA//#include "Object.h" // for getObjectInterface#include "as_object.h"#include "string_table.h"#include "VM.h"#include "flash/geom/ColorTransform_as.h"#include "flash/geom/Matrix_as.h"#include "flash/geom/Point_as.h"#include "flash/geom/Rectangle_as.h"#include "flash/geom/Transform_as.h"namespace gnash {as_valueget_flash_geom_package(const fn_call& /*fn*/){	log_debug("Loading flash.geom package");	as_object* pkg = new as_object(getObjectInterface());	ColorTransform_class_init(*pkg);	Matrix_class_init(*pkg);	Point_class_init(*pkg);	Rectangle_class_init(*pkg);	Transform_class_init(*pkg);	return pkg;}voidflash_geom_package_init(as_object& where){	string_table& st = where.getVM().getStringTable();	where.init_destructive_property(st.find("geom"), get_flash_geom_package);}} // end of gnash namespace

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -