Fish - FiberLib for VISH 0.3
Fish - The Fiber Bundle API for the Vish Visualization Shell
Functions
010-SimpleSave.cpp File Reference

[Next Example → 011-GridOperation.cpp ]. More...

#include <fiber/bundle/Bundle.hpp>
#include <fiber/finit/FinitAPI.h>

Functions

int main ()
 Demonstrates minimal usage of the FiberLib Create Bundle, insert a time slice, and safe it to a file.
 

Detailed Description

[Next Example → 011-GridOperation.cpp ].

In FiberLib Tutorial

#include <fiber/bundle/Bundle.hpp>
#include <fiber/finit/FinitAPI.h>
using namespace Fiber;
/**
* @brief Demonstrates minimal usage of the FiberLib
* Create Bundle, insert a time slice, and safe it to a file.
* The file will be pretty much empty, only containing a time slice
* without data. This is for demonstration only.
*/
int main()
{
Finit();
BP[1.0];
BP.save("010_SimpleSave.f5");
return 0;
}
Convenience class that implements a pointer to a Bundle object but adds some useful member funtions t...
Definition Bundle.hpp:779
int save(const string &url, const RefPtr< LoaderProgress > &SaveProgress=nullptr, const RefPtrStorageTransformations &ST=nullptr)
Definition Bundle.cpp:1142
Given a fragmented field of curvilinear coordinates, (3D array of coordinates), build a uniform Grid ...
Definition FAQ.dox:2

Function Documentation

◆ main()

int main ( )

Demonstrates minimal usage of the FiberLib Create Bundle, insert a time slice, and safe it to a file.

The file will be pretty much empty, only containing a time slice without data. This is for demonstration only.

References Fiber::BundlePtr::save().