Realistic 3D camera system
3D camera system components
Modules
Here is a list of all modules:
 asio::buffer_sizeThe asio::buffer_size function determines the total number of bytes in a buffer or buffer sequence
 asio::buffer_castThe asio::buffer_cast function is used to obtain a pointer to the underlying memory region associated with a buffer
 asio::bufferThe asio::buffer function is used to create a buffer object to represent raw memory, an array of POD elements, a vector of POD elements, or a std::string
 asio::buffer_copyThe asio::buffer_copy function is used to copy bytes from a source buffer (or buffer sequence) to a target buffer (or buffer sequence)
 Completion Condition Function Objects
 asio::connectEstablishes a socket connection by trying each endpoint in a sequence
 asio::async_connectAsynchronously establishes a socket connection by trying each endpoint in a sequence
 asio::asio_handler_invokeDefault invoke function for handlers
 asio::readAttempt to read a certain amount of data from a stream before returning
 asio::async_readStart an asynchronous operation to read a certain amount of data from a stream
 asio::read_atAttempt to read a certain amount of data at the specified offset before returning
 asio::async_read_atStart an asynchronous operation to read a certain amount of data at the specified offset
 asio::read_untilRead data into a streambuf until it contains a delimiter, matches a regular expression, or a function object indicates a match
 asio::async_read_untilStart an asynchronous operation to read data into a streambuf until it contains a delimiter, matches a regular expression, or a function object indicates a match
 asio::spawnStart a new stackful coroutine
 asio::writeWrite a certain amount of data to a stream before returning
 asio::async_writeStart an asynchronous operation to write a certain amount of data to a stream
 asio::write_atWrite a certain amount of data at a specified offset before returning
 asio::async_write_atStart an asynchronous operation to write a certain amount of data at the specified offset