NFF Converter
FileFlip converts NFF files into 14 other formats entirely inside your browser, using Assimp compiled to WebAssembly. The NFF file is never uploaded to a server: it is read off your disk, converted on your own machine, and saved back by the browser. There is no file-size limit and no account to create.
How do I convert an NFF file?#
- Drop your NFF file onto the converter at the top of this page, or click it to pick one from your computer.
- Choose the format you want out of it. FileFlip downloads the engine that conversion needs, once, and your browser caches it.
- Conversion starts the moment you pick the format, and the result is yours to download. The work happens in this tab, so nothing is uploaded and nothing is queued.
Is it safe to convert NFF files online?#
Yes, because nothing is uploaded. FileFlip converts NFF files inside the browser tab you already have open, using WebAssembly builds of the same engines a desktop converter would install. Your file is read from your own disk into the page's memory, and no request carrying it is ever made.
You do not have to take that on trust. Open your browser's network panel, run a conversion, and you will see the engine come down and your file go nowhere. There is no upload, no server-side copy, no retention window, and no account tied to what you converted.
How FileFlip works lists every engine, its version and its download size, and shows how to check for yourself that nothing leaves your machine.
What happens to a NFF file#
FileFlip converts NFF into 14 formats with Assimp, all of it inside the browser tab. Each conversion below names the engine it uses, what it downloads, and exactly what that conversion keeps or drops.
| Category | 3D Models |
|---|---|
| File extension | .nff |
| FileFlip support | Read only, so it is a source rather than a target |
| Conversions available | 14 |
| Engines | Assimp |
| Downloaded to your browser | 11.2 MB on the first conversion, then cached |
What is an NFF file?#
An NFF file is plain text written to Eric Haines' Neutral File Format, first drafted on October 3, 1988 as part of the Standard Procedural Databases project, listing a viewpoint, lights, a background colour and a handful of primitives like spheres, cones and polygons with one letter code starting each line.
Use NFF only when working with an existing ray-tracing benchmark scene or legacy renderer that already expects the format.
Convert NFF to OBJ when its primitives need to become a mesh that a modern 3D application can open.
The NFF file format reference covers the specification, the programs that open one, and what each conversion keeps or drops.
NFF questions people ask#
What is an NFF file?
An NFF file is a plain-text scene description in Eric Haines' Neutral File Format, listing a camera, lights, a background colour and simple primitives like spheres, cones and polygons. Haines created it in 1988 as part of the Standard Procedural Databases project, a set of test scenes meant to let different ray tracers be compared on identical input.
What software can open NFF files?
NFF has no mainstream viewer today; support is limited to older ray tracers and a handful of 3D libraries, such as Assimp, that kept a reader for benchmark and archival purposes. A general-purpose 3D application is unlikely to open one directly.
Does NFF support textures or materials?
No, an NFF surface is described with only a fill colour, a diffuse and specular coefficient, shininess, transmittance and index of refraction, with no texture mapping at all. That simplicity is what made it easy for different renderers to implement consistently.