]> git.jsancho.org Git - guile-assimp.git/log
guile-assimp.git
9 years agoRestructuration
Javier Sancho [Fri, 25 Jul 2014 12:50:50 +0000 (14:50 +0200)]
Restructuration

9 years agoNew foreign function ai-transform-vec-by-matrix4
Javier Sancho [Thu, 17 Jul 2014 11:19:39 +0000 (13:19 +0200)]
New foreign function ai-transform-vec-by-matrix4

* src/assimp.scm: Scheme part of the function.

* src/low-level/cimport.scm: Foreign interface to aiTransformVecByMatrix4.

9 years agoNew struct types ai-matrix3x3 and ai-matrix4x4
Javier Sancho [Thu, 17 Jul 2014 11:13:26 +0000 (13:13 +0200)]
New struct types ai-matrix3x3 and ai-matrix4x4

* src/assimp.scm: New conversion types for matrixes; before matrixes
  were list of numbers.

* src/low-level.scm: Parsers can reverse conversion from scheme to C.

* src/low-level/matrix.scm: New struct types from C matrixes.

9 years agoResolve VM Stack Overflow when reading mesh vertices
Javier Sancho [Tue, 15 Jul 2014 13:01:51 +0000 (15:01 +0200)]
Resolve VM Stack Overflow when reading mesh vertices

* src/low-level.scm: Function array implemented with tail recursion.

9 years agoAdd foreign functions and rename types
Javier Sancho [Tue, 15 Jul 2014 12:34:50 +0000 (14:34 +0200)]
Add foreign functions and rename types

* src/assimp.scm: Rename types, from scene to ai-scene, from node to
  ai-node, etc. New functions ai-import-file and ai-multiply-matrix4.

* src/low-level.scm: New syntax define-foreign-function for simplifying
  foreign functions declaration.

* src/low-level/cimport.scm: Foreign functions aiImportFile and
  aiMultiplyMatrix4.

9 years agoAdd new types and structs parsers
Javier Sancho [Mon, 14 Jul 2014 12:54:13 +0000 (14:54 +0200)]
Add new types and structs parsers

* src/assimp.scm: New types vector2d, vector3d, color4d, bone and
  vertex-weight.

* src/low-level/color.scm: New parser for aiColor4D.

* src/low-level/mesh.scm: New parsers for aiVertexWeight and aiBone.

* src/low-level/vector.scm: New parsers for aiVector2D and aiVector3D.

9 years agoRewrite definitions with new conversion-types
Javier Sancho [Fri, 11 Jul 2014 08:18:18 +0000 (10:18 +0200)]
Rewrite definitions with new conversion-types

* src/assimp.scm: Remove type generation functions and use 'field'
  syntax in every request to data from C parser.

* src/low-level.scm: Add type generation functions using new 'field'
  syntax.

9 years agoRewrite definition types using new C parsers
Javier Sancho [Mon, 7 Jul 2014 14:58:42 +0000 (16:58 +0200)]
Rewrite definition types using new C parsers

* src/assimp.scm: Rewrite definition for meshes, materials and faces.

* src/low-level/material.scm: Parser for aiMaterial struct.

* src/low-level/mesh.scm: Parser for aiMesh and aiFace structs.

9 years agoRewrite definition types using new C parsers
Javier Sancho [Sun, 22 Jun 2014 13:57:02 +0000 (15:57 +0200)]
Rewrite definition types using new C parsers

* src/assimp.scm: New macro 'define-conversion-type' for defining
  types for libassimp structs using new parsers from low-level files.

* src/low-level/scene.scm: Rename fields in nodes parser.

9 years agoLow level support and scene.h structs parsing
Javier Sancho [Wed, 11 Jun 2014 13:19:02 +0000 (15:19 +0200)]
Low level support and scene.h structs parsing

9 years agoNew type 'face'
Javier Sancho [Thu, 29 May 2014 09:40:17 +0000 (11:40 +0200)]
New type 'face'

9 years agoNew type 'material'
Javier Sancho [Wed, 28 May 2014 09:31:05 +0000 (11:31 +0200)]
New type 'material'

9 years agoBug: nodes store index to mesh and not pointer to mesh
Javier Sancho [Tue, 27 May 2014 07:16:35 +0000 (09:16 +0200)]
Bug: nodes store index to mesh and not pointer to mesh

9 years agoRefining node structure (name, transformation and parent fields)
Javier Sancho [Mon, 26 May 2014 07:32:31 +0000 (09:32 +0200)]
Refining node structure (name, transformation and parent fields)

9 years agoImproving ways for accessing data structs
Javier Sancho [Fri, 23 May 2014 07:12:21 +0000 (09:12 +0200)]
Improving ways for accessing data structs

9 years agoInitial commit
Javier Sancho [Mon, 12 May 2014 05:51:17 +0000 (07:51 +0200)]
Initial commit