Main > Free Download Search >

Free model editor software for linux

model editor

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1158
PloneArticleModelEditor 0.2

PloneArticleModelEditor 0.2


PloneArticleModelEditor is a project that allows you to create dynamic models for PloneArticle. more>>
PloneArticleModelEditor is a project that allows you to create dynamic models for PloneArticle.
This product allow you to create dynamic models for PloneArticle. A model is composed of blocks. There are many types of blocks :
Image
Text (from PloneArticle or not)
macro
You can use PloneArticleModelEditor in ZMI or PMI with a congilet.
PloneArticleModelEditor allows you to create dynamic models for PloneArticle Models are stored in portal_article_models tool in you Plone site.
All generated templates from models are stored in portal_skins/PloneArticleBlockModels.
Use portal_article tool, from PloneArticle, to detect it.
Enhancements:
- Initial release (0.2)
- Generate bloc models for PloneArticle product
<<less
Download (0.79MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
988 downloads
Model Builder 0.4.0

Model Builder 0.4.0


Model Builder is a graphical tool for designing, simulating, and analyzing mathematical models. more>>
Model Builder is a graphical tool for designing, simulating, and analyzing mathematical models consisting of a system of ordinary differential equations (ODEs).
Main features:
- Equation-based model definition. No need to learn to program to define and run your models. Just type-in you differential equations
- Graphic output of simulation. You can save the graphics in the most common formats: png, svg, pdf, etc.
- Spreadsheet view of the results. From the spreadsheet you can make customized plots from your variables. You can also export your data to a .csv text file
- Latex rendering of your system of equations.
- Intuitive graphical interface.
- Uncertainty analysis module (coming soon!)
<<less
Download (0.21MB)
Added: 2007-03-27 License: GPL (GNU General Public License) Price:
558 downloads
DbModeller 0.3.1

DbModeller 0.3.1


DbModeller is a database schema modelling application. more>>
DbModeller project is a database schema modelling application for building physical database designs.

This can connect to an existing database a pull down the schema or create from scratch. It currently allows modelling of tables and referential integrity constraints and generates SQL for the model. It saves the schema in open XML format.

DbModeller 0.3.1 supports Sybase, MySQL, Postgres and Ms SQL Server 2000 database servers. It can connect to these running servers and download a live database schema.

Additionally it can parse a SQL script and display the tables and foreign keys on the canvas in an entity relationship diagram (ERD).
<<less
Download (0.85MB)
Added: 2005-04-22 License: GPL (GNU General Public License) Price:
1650 downloads
GO::Model::Term 0.04

GO::Model::Term 0.04


GO::Model::Term is a term or concept in an ontology. more>>
GO::Model::Term is a term or concept in an ontology.

SYNOPSIS

# From a file
use GO::Parser;
my $parser = new GO::Parser({handler=>obj}); # create parser object
$parser->parse("gene_ontology.obo"); # parse file -> objects
my $graph = $parser->handler->graph; # get L object
my $term = $graph->get_term("GO:0001303"); # fetch a term by ID
printf "Term %s %sn", $term->name, $term->acc;

# From a GO Database (requires go-db-perl)
my apph = GO::AppHandle->connect(-dbname=>$dbname);
my $term = $apph->get_term({acc=>00003677});
printf "Term:%s (%s)nDefinition:%snSynonyms:%sn",
$term->name,
$term->public_acc,
$term->definition,
join(", ", @{$term->synonym_list});

Represents an Ontology term; the same class is used for process, compartment and function
currently, a Term is not aware of its Relationships; to find out how a term is related to other terms, use the a GO::Model::Graph object, which will give you the GO::Model::Relationship objects; for example

$rels = $graph->get_parent_relationships($term->acc);

<<less
Download (0.58MB)
Added: 2006-10-02 License: Perl Artistic License Price:
1117 downloads
Misfit Model 3D 1.3.5

Misfit Model 3D 1.3.5


Misfit Model 3D is an OpenGL-based 3D model editor. more>>
Misfit Model 3D is an OpenGL-based 3D model editor that works with triangle-based models. Misfit Model 3D supports multi-level undo, skeletal animations, simple texturing, scripting, command-line batch processing, and a plugin system for adding new model and image filters.
Complete online help is included. It is designed to be easy to use and easy to extend with plugins and scripts.
Misfit Model 3D was written and tested on Linux (2.4 and 2.6 kernels) and has been compiled and tested on most major Linux distributions.
It is not endian-safe so it is unlikely to run on non-x86 hardware platforms--this will probably not change soon unless I get requests for a version thats usable on big-endian archs.
Enhancements:
- The menus have been re-organized. There is a new command to make normals face outward. The texture coordinate window now has a rotate tool. Material support for COB has been improved. Many animation bugs have been fixed. A "File | Export" command has been added to indicate which formats have less reliable write support.
<<less
Download (0.71MB)
Added: 2007-07-16 License: GPL (GNU General Public License) Price:
832 downloads
Config::Model 1.003 (Config::Model::CursesUI)

Config::Model 1.003 (Config::Model::CursesUI)


Config::Model provides a framework to help in validating the semantic content of configuration data. more>>
Config::Model provides a framework to help in validating the semantic content of configuration data. The project can also be used to provide a semantic check of options of a complex program like mplayer or transcode.
For most complex software, configuration upgrade is a difficult task for most people. By using Config::Model, a software can provide a smooth upgrade path for their users.
How does this work ?
Using this project, a typical configuration validation tool will be made of 3 parts :
The user interface
The validation engine which is in charge of validating all the configuration information provided by the user.
The storage facility that store the configuration information
Dont we already have some configuration validation tools ?
Youre probably thinking of tools like webmin. Yes, these tools exist and work fine, but they have their set of drawbacks.
Usually, the validation of configuration data is done with a script which performs semantic validation and often ends up being quite complex (e.g. 2500 lines for Debians xserver-xorg.config script which handles xorg.conf file).
In most cases, the configuration model is expressed in instructions (whatever programming language is used) and interspersed with a lot of processing to handle the actual configuration data.
Whats the advantage of this project ?
The Config::Model projects provide a way to get a validation engine where the configuration model is completely separated from the actual processing instruction.
The configuration model is expressed in a declarative form (i.e. a Perl data structure) which is always easier to maintain than a lot of code.
The declaration specifies:
the structure of the configuration data (which can be queried by generic user interfaces)
the properties of each element (boundaries, check, integer or string, enum like type ...)
the default values of parameters (if any)
mandatory parameters
the targeted audience (intermediate, advance, master)
on-line help (for ach parameter or value of parameter)
the level of expertise of each parameter (to hide expert parameters from newbie eyes)
So, in the end:
maintenance and evolution of the configuration content is easier
user will see a *common* interface for *all* programs using this project.
user will not see advanced parameters
upgrade of configuration data is easier and sanity check is performed
audit of configuration is possible to check what was modified by the user compated to default values
What about the user interface ?
Config::Model will also come with a Curses::UI interface that queries the users model and generate the relevant user screens.
What about data storage ?
Since the syntax of configuration files vary wildly form one program to another, most people who want to use this framework will have to provide a dedicated parser/writer.
Nevertheless, this project can also provide a writer/parser for most common format: like ini style file, or provide an interface to the Elektra or debconf projects. This point is open for discussion.
It is entirely possible for a single configuration model to use several parsers and writers so one model will ensure the consistency of several configuration files together.
Enhancements:
- The Xorg model was updated to Config::model version 0.609.
- Some bugs were fixed.
<<less
Download (0.015MB)
Added: 2007-05-22 License: LGPL (GNU Lesser General Public License) Price:
886 downloads
 
Other version of Config::Model
Config::Model 0.612Config::Model provides a framework to help in validating the semantic content ... Config::Model can also be used to provide a semantic check of options of a complex program like
License:LGPL (GNU Lesser General Public License)
Download (0.086MB)
818 downloads
Added: 2007-07-28
Config::Model 0.501 (Config::Model::Xorg)Config::Model provides a framework to help in validating the semantic content ... By using Config::Model, a software can provide a smooth upgrade path for their users. How does
License:GPL (GNU General Public License)
Download (0.024MB)
885 downloads
Added: 2007-05-22
Model3D::WavefrontObject 1.00

Model3D::WavefrontObject 1.00


Model3D::WavefrontObject is a Perl extension for reading, manipulating and writing polygonal Alias Wavefront 3D models. more>>
Model3D::WavefrontObject is a Perl extension for reading, manipulating and writing polygonal Alias Wavefront 3D models.

SYNOPSIS

use Model3D::WavefrontObject;
my $model = Model3D::WavefrontObject->new;
$model->ReadObj(blMilWom_v3.obj);
$model->Rotate(x => 45, y => 15);
$model->Scale(135%);
$model->WriteObj(V3_modified.obj);

Model3D::WavefrontObject allows a polygonal Alias Wavefront Object file to be loaded into memory, manipulated, analysed, and re-output.

At this time the model only supports the polygon functions of the Wavefront Object format, not bezier splines, procedural surfaces, and so on. It is currently coded only far enough to support the sorts of Wavefront Object meshes that are also supported by the Poser 3D animation program, and of the sort exported by 3DSMax by using the HABWare exporter.

It supports groups and materials, but not multi-grouped polygons (only the first group is recognised if a polygon is declared to be in multiple groups).

Polygons with greater numbers of vertices are supported, even though these are not supported by the Poser software.

The models will also recognise (and support) the Region extension to the format as defined by Steve Coxs UVMapper and UVMapper Pro program. As a result, it may well be the only piece of code that writes Wavefront Objects without leaving these out.

<<less
Download (0.020MB)
Added: 2006-10-23 License: Perl Artistic License Price:
1096 downloads
medini QVT 1.0

medini QVT 1.0


medini QVT implements OMGs QVT Relations specification in a powerful QVT engine. more>>
medini QVT implements OMGs QVT Relations specification in a powerful QVT engine.
The standard is designed for model-to-model transformations to allow fast development, maintenance and customization of process specific transformation rules.
Main features:
- Execution of QVT transformations expressed in the textual concrete syntax of the Relations language
- Trace management enabling incremental update during retransformation
- Key concept enabling incremental update as well as the transition from manual modeling to automation through transformations in the abscence of traces
- Bidirectional transformations
<<less
Download (MB)
Added: 2007-08-16 License: Free for non-commercial use Price:
805 downloads
Config::Model::WarpedThing 0.611

Config::Model::WarpedThing 0.611


Config::Model::WarpedThing is a base class for warped classes. more>>
Config::Model::WarpedThing is a base class for warped classes.

SYNOPSIS

use base qw/Config::Model::WarpedThing/ ;

This class must be inherited by all classes that can be warped by Config::Model::Value. This class provides a set of methods that are expected by a warp master from a warped class.

Currently this class is inherited by Config::Model::Value, Config::Model::AnyId and Config::Model::WarpedNode.

WarpThing does not provide a constructor.

<<less
Download (0.12MB)
Added: 2007-07-06 License: Perl Artistic License Price:
840 downloads
Vertex 3D Model Assembler 0.1.15

Vertex 3D Model Assembler 0.1.15


Vertex 3D Model Assembler project is a polygon-based live-end modeller. more>>
Vertex 3D Model Assembler project is a polygon-based live-end modeller.

The Vertex 3D Model Assembler is a 3D modeller geared towards making high performance models for games and other live-end requirements.

It uses the V3D format to maximize efficiency with OpenGL rendering, and can view/edit any V3D hybrid data.

<<less
Download (1.1MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1102 downloads
Config::Model::ValueComputer 0.612

Config::Model::ValueComputer 0.612


Config::Model::ValueComputer is a Perl module that provides configuration value computation. more>>
Config::Model::ValueComputer is a Perl module that provides configuration value computation.

SYNOPSIS

my $model = Config::Model->new() ;

$model ->create_config_class
(
name => "Master",
element
=> [
[qw/av bv/] => {type => leaf,
value_type => integer,
},
compute_int
=> { type => leaf,
value_type => integer,
compute => [ $a + $b, a => - av, b => - bv ],
min => -4,
max => 4,
},
[qw/sav sbv/] => {type => leaf,
value_type => string,
},
compute_string =>
=> { type => leaf,
value_type => string,
compute => [ meet $a and $b, a => - sav, b => - sbv ],
},
]
) ;

<<less
Download (0.13MB)
Added: 2007-08-16 License: Perl Artistic License Price:
799 downloads
Yukatan data model 1.0

Yukatan data model 1.0


Yukatan data model project is the schema definition of the Yukatan webmail database. more>>
Yukatan data model project is the schema definition of the Yukatan webmail database.
The PostgreSQL database structures defined in this file can be used as a backend store of an email message handling application. The database should be created with the "UNICODE" encoding to properly support messages in different languages.
New data types
The special data types commonly used in the Yukatan data model have been made explicit by the introduction of seven new domains. The domains and the related COMMENT statements make field semantics more clear than before.
See the SQL schema file for more detailed documentation on these domains.
Explicitly named constraints
All the table constraints in the database are now explicitly named and documented. This change makes the database implementation more orthogonal and cleans up the documentation.
Renamed fields and tables
All the *address field names have been truncated to *addr, to make it visually clearer that they are always paired with the corresponding *name fields. The change also makes parts of the documentation less repetitive.
The referencesfield table has been renamed to referencefield to avoid the plural form in the table name. Also all the contained references* field names have been renamed to reference*.
Semantic changes
Quite a few changes have been made to the semantics of various fields. The unnecessarily tight constraints on sequence numbers have been replaced with clearer documentation, the format and encoding of most fields has been explicitly documented, and the previously allowed dual use of the enttext and enddata fields has been prohibited.
Dropped envelope data
The envelope data added in version 0.5 of the data model has for now been removed. The reason for the removal is that the envelope data is not an integral part of an email message, and I wanted to make the version 1.0 as clear as possible. The database now stores "email messages" - nothing less, nothing more. Envelope data can and probably will be reintroduced in an incremental version 1.x along with other extensions.
Enhancements:
- cleans up and documents the data model that has developed since version 0.1
- removal of the envelope data added in version 0.5
- enaming and redefinition of some of the fields and tables
- database structure has also been extensively documented
<<less
Download (0.035MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
983 downloads
MyPageKit::MyModel 1.18

MyPageKit::MyModel 1.18


MyPageKit::MyModel is an example Derived Model Class implementing Backend Code for pagekit.org website. more>>
MyPageKit::MyModel is an example Derived Model Class implementing Backend Code for pagekit.org website.

This module provides a example of a Derived Model component (Business Logic) of a PageKit website.

It is also the code used for old the http://www.pagekit.org/ web site. It contains two methods, one for customizing the look and feel for the website, and another for processing new account sign ups.

It is a good starting point for building your backend for your PageKit website.

<<less
Download (0.13MB)
Added: 2006-10-13 License: Perl Artistic License Price:
1106 downloads
desktop-data-model 1.2.5

desktop-data-model 1.2.5


desktop-data-model is a GNOME wrapper library. more>> desktop-data-model 1.2.5 is a versatile software which functions as a GNOME wrapper library.

Installation: The simplest way to compile this package is:

  1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system.
  2. Running `configure might take a while. While running, it prints some messages telling which features it is checking for.
  3. Type `make to compile the package.
  4. Optionally, type `make check to run any self-tests that come with the package.
  5. Type `make install to install the programs and any data files and
  6. documentation.
  7. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make disclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<less
Added: 2008-10-29 License: LGPL Price: FREE
16 downloads
Java Stencil Report 0.3.1

Java Stencil Report 0.3.1


Java Stencil Report is designed to write school reports in a fast way by a set of user-inserted sentences. more>>
Java Stencil Report is designed to write school reports in a fast way by a set of user-inserted sentences. The project has a small vector graphics editor to create a full customizable print model. Java Stencil Report is designed for schools, but can be used to write any kind of judgement. It does not require any installation.
Enhancements:
- Lines in the print model editor (VectorGraphicsLine) can now be mouse-selected with a more accurate mask.
- VectorGraphicsElement z-depth is now displayed in the status bar.
- A new user friendly dialog for changing the form period was added.
- The placement of VectorGraphicsElement was randomized.
- Transparency was added to the selection border.
- The generic name "Indicator" is now substituted with a more appropriate "Evaluation Wizard" and "Stencil" in all label and the jstecilreport folder.
- A new set of icons was provided in the print model editor.
- Some code was optimized.
<<less
Download (MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
816 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5