Giter Site home page Giter Site logo

Unloading files about ngl HOT 4 CLOSED

nglviewer avatar nglviewer commented on May 22, 2024
Unloading files

from ngl.

Comments (4)

arose avatar arose commented on May 22, 2024

I'm not sure the best way to unload a file. I only need one mmCIF file loaded at a time, at least in the near future. What code do I run as soon as I know I'm going to need a different file?

stage.loadFile( "path" ).then( function( comp ){
  stage.removeComponent( comp );  // this removes the just loaded component
}

Also, when I accidentally loaded a second structure, WebGL crashed. I'm not sure if that is a bug or not. It may just be that my computer ran out of memory when trying to do that. I may experiment with loading multiple large structures another time and test the limits.

This should not happen, loading and displaying many structures is generally supported. Depending on how you load them a crash might be caused by the creation of too many WebWorkers. So, limit the number of files loaded in parallel or load them sequentially altogether. Here is how do it for the GUI using the async.js library:

async.eachLimit(
    e.dataTransfer.files,
    4,
    function( file, callback ){
        stage.loadFile( file, {
            defaultRepresentation: true
        } ).then( function(){ callback(); } );
    }
);

I happily consider handling that in the stage object. Would you mind opening a separate issue for it, so that we don't mix topics so much. Thanks!

from ngl.

arose avatar arose commented on May 22, 2024

@BernierCR any news on this?

from ngl.

BernierCR avatar BernierCR commented on May 22, 2024

Sorry, no news. I've been focused on my job hunt and other such things.
Someday I will just really feel like doing this instead of what I should be
doing. I wish I could figure out how to crowd fund myself. It's funny,
people will crowdfund the creation of videos about science, but they don't
crowdfund the actual science.

On Fri, Feb 12, 2016 at 12:56 AM, Alexander Rose [email protected]
wrote:

@BernierCR https://github.com/BernierCR any news on this?


Reply to this email directly or view it on GitHub
#41 (comment).

from ngl.

arose avatar arose commented on May 22, 2024

Good luck! There is https://experiment.com/, haven't tried it though.

from ngl.

Related Issues (20)

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.