Code Monkey home page Code Monkey logo

toxiclibs's Issues

UnsatisfiedLinkError (Windows XP)

What steps will reproduce the problem?
1. install audioutils and toxiclibscore on Windows XP
2. start one of the autioutils sketches, e.g.: HelloAudioWorld 

What is the expected output? What do you see instead?
Exception in thread "Animation Thread" java.lang.UnsatisfiedLinkError:
com.sun.gluegen.runtime.WindowsDynamicLinkerImpl.LoadLibraryW(Ljava/lang/String;
)J
at com.sun.gluegen.runtime.WindowsDynamicLinkerImpl.LoadLibraryW(Native Method)
at
com.sun.gluegen.runtime.WindowsDynamicLinkerImpl.openLibrary(WindowsDynamicLinke
rImpl.java:26)
at com.sun.gluegen.runtime.NativeLibrary.open(NativeLibrary.java:164)
at
net.java.games.joal.impl.ALProcAddressLookup$DynamicLookup.dynamicLookupFunction
(ALProcAddressLookup.java:62)
at
com.sun.gluegen.runtime.ProcAddressHelper.resetProcAddressTable(ProcAddressHelpe
r.java:99)
at
net.java.games.joal.impl.ALProcAddressLookup.resetALCProcAddressTable(ALProcAddr
essLookup.java:109)
at net.java.games.joal.impl.ALCImpl.alcOpenDevice(ALCImpl.java:341)
at toxi.audio.JOALUtil.init(Unknown Source)
at toxi.audio.JOALUtil.init(Unknown Source)
at HelloAudioWorld.setup(HelloAudioWorld.java:57)
at processing.core.PApplet.handleDraw(PApplet.java:1402)
at processing.core.PApplet.run(PApplet.java:1327)
at java.lang.Thread.run(Thread.java:619)

What version of the product are you using? On what operating system?
audioutils-0005.zip
toxiclibscore-0015.zip
Processing 1.0.9
Windows XP Professional SP3

Please provide any additional information below.
This seems to solve the problem:
1. get the latest Joal Release Build (joal-1.1.2-windows-i586.zip)
2. exchange the files in libraries/audioutils/library (gluegen-rt.dll,
gluegen-rt.jar, joal.jar, joal_native.dll)

Original issue reported on code.google.com by [email protected] on 8 Dec 2009 at 8:44

AABB IntersectBox problem

I tried to use the function intersectBox(AABB b) in order to calculate the 
intersection between two different boxes that I previously created.
The problem was that, to orient the boxes on the face of the other box, I was 
rotating the extent vector of the box of multiples of PI/2, in order to swap x 
and y.
But this would cause the intersectBox function not to work (I believe because 
the extent vector components would become negative). I've wrote an intersect 
function myself in Processing, and this one seems to work fine:

boolean intersectsBox2(AABB other){
    boolean intersecting = false;

    Vec3D diff = other.sub(boundingBox);

    Vec3D extent = boundingBox.getExtent();
    Vec3D otherExtent = other.getExtent();

    // I wrote the function in 2D, it should work in 3D as well
    if(abs(diff.x) <= (abs(extent.x) + abs(otherExtent.x)) && abs(diff.y) <= (abs(extent.y) + abs(otherExtent.y))){
      intersecting = true;
    }

    return intersecting;
  }

Hope this helps... Let me know if you think it can work or if there are any 
other ways to fix it.

Original issue reported on code.google.com by [email protected] on 11 Jun 2013 at 10:13

Help with tutorial

Hello, I'm just looking for a quick tutorial on how to get started with this.

I am completely new to processing and this area, but love what Toxiclibs
has done with visualizations.

thanks

Original issue reported on code.google.com by [email protected] on 7 Mar 2010 at 4:52

svn checkout fails on osx

sorry for bothering you with such a trivial problem, but this is making it
really hard to have a peek at your code:

i'm trying to check out the project with: 
> svn checkout http://toxiclibs.googlecode.com/svn/trunk/ toxiclibs-read-only 
fails with:
> svn: Failed to add file 'README': object of the same name already exists
in the middle of the process.

renaming the README file would probably fix this...
thanks
m.

system: mac os x 10.5, default svn โ€“ non casesensitive hd format ;)

Original issue reported on code.google.com by [email protected] on 26 Sep 2008 at 2:15

Complete Javadoc for all checked-in classes

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


Please use labels and text to provide additional information.


Original issue reported on code.google.com by toxmeister on 8 May 2007 at 5:32

Add uniform decimator to spline classes

For the DLA lib and also other purposes (e.g. gesture recognition) it'd be
great to split a computed spline curve into segments of uniform length.
Might have a closer look at the GestureNormalizer class in NUIgroup lib,
but should be fairly straight forward...

http://code.google.com/p/multitouchas3experiments/source/browse/trunk/app/core/a
ction/gestures/GestureNormalizer.as

Original issue reported on code.google.com by toxmeister on 15 Jun 2009 at 6:07

"The function getValue() does not exist." error in JOALSequencerDEMO

What steps will reproduce the problem?
1. Run the JOALSequencerDEMO.

What is the expected output? What do you see instead?
Sketch does not run and outputs the error:
The function getValue() does not exist.
Referring to line 142 of AudioPattern:
note.setGain(automator!=null ? automator.getValue() : 1);

What version of the product are you using? On what operating system?
audioutils-0005
audioutils-0003-examples
OpenAL 2.0.3
Processing 1.0.9
Windows Vista SP2

Please provide any additional information below.
All the other examples seem to run just fine.

Original issue reported on code.google.com by [email protected] on 24 Dec 2009 at 10:43

SimplexNoise sequence artefacts in 2D and 4D versions

Need to compare with original implementation to see if these
artefacts/interruptions got introduced earlier. 3D version seems fine

Original issue reported on code.google.com by toxmeister on 16 Apr 2008 at 9:00

refactor waves to provide pushing/popping of states

There might be situations when it's useful to store the current state of a
wave (and its child waves [modulation]). This should work in principle as
OpenGL's matrix stack...

We only need to store the basic & common params: phase,freq,amp,offset

Proposal:

1) add push()/pop() to AbstractWave. FM versions can overwrite and also
call the method on their child waves

2) add a state stack field to AbstractWave for saving current phase & freq

Original issue reported on code.google.com by toxmeister on 22 Nov 2009 at 12:16

SIAD additions todo

Add the following to toxi.geom:

* marching cubes volumes
* voxel drawing for volumes
* Vec2D polygon intersection test

Release by 2009-02-23

Original issue reported on code.google.com by toxmeister on 15 Feb 2009 at 12:17

UnsupportedClassVersionError

Error creating a new object. Processing outputs the following error:

java.lang.UnsupportedClassVersionError: toxi/math/FastMath (Unsupported 
major.minor version 49.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)

I'm running WindowsXP SP2, Processing 0124 with Java 1.4.2 included.

I guess there is a version conflict between the library and the Java version 
Processing is using?

Original issue reported on code.google.com by [email protected] on 14 Jun 2007 at 9:13

Triangle.containsPoint is not inclusive

containsPoint() always returns false for corners of the Triangle, and
returns false for edges ~81.2% of the time.

I ran into this problem while trying to remap a set of points from one
triangulation to another... and the corner points weren't showing up!

Original issue reported on code.google.com by [email protected] on 9 Feb 2010 at 8:57

Attachments:

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.