资源简介
本文档介绍了PLY多边形文件格式,用于存储被描述为多边形集合的图形对象的格式。我们的目标是提供一种简单易于实现的格式,但这种格式对于广泛的模型来说是非常有用的。文件格式有两种子格式:用于轻松启动的ASCII表示形式,以及用于紧凑存储和快速保存和加载的二进制版本。我们希望这种格式将促进程序之间以及人群之间的图形对象的交换。
代码片段和文件信息
/* ----------------------------------------------------------------------
* RPly library read/write PLY files
* Diego Nehab Princeton University
* http://www.cs.princeton.edu/~diego/professional/rply
*
* This library is distributed under the MIT License. See notice
* at the end of this file.
* ---------------------------------------------------------------------- */
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include “rply.h“
/* ----------------------------------------------------------------------
* Constants
* ---------------------------------------------------------------------- */
#define WORDSIZE 256
#define LINESIZE 1024
#define BUFFERSIZE (8*1024)
typedef enum e_ply_io_mode_ {
PLY_READ
PLY_WRITE
} e_ply_io_mode;
static const char *const ply_storage_mode_list[] = {
“binary_big_endian“ “binary_little_endian“ “ascii“
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-03-04 17:48 读写ply文件\
目录 0 2019-01-06 19:53 读写ply文件\etc\
文件 5151 2005-01-16 06:48 读写ply文件\etc\convert.c
文件 1273 2005-01-16 06:48 读写ply文件\etc\dump.c
文件 267 2005-01-16 06:48 读写ply文件\etc\input.ply
文件 2186733 2019-01-06 18:26 读写ply文件\etc\randomface_1.ply
文件 2455 2005-01-16 06:48 读写ply文件\etc\sconvert.c
文件 1077 2005-01-16 06:48 读写ply文件\LICENSE
目录 0 2011-03-04 17:48 读写ply文件\manual\
文件 33138 2005-01-16 06:48 读写ply文件\manual\manual.html
文件 950 2005-01-16 06:48 读写ply文件\manual\reference.css
文件 6232 2005-01-16 06:48 读写ply文件\manual\rply.png
文件 51390 2005-01-16 06:48 读写ply文件\rply.c
文件 15201 2005-01-16 06:48 读写ply文件\rply.h
- 上一篇:uip 通信(stm32) 源代码
- 下一篇:c++ 哈夫曼编译码器
相关资源
- c++ 哈夫曼编译码器
- c++ pcm转mp3编码(编码器为lamp)
- C++_STL范例大全_教程C _STL samples
- 粒子群优化算法(PSO)
- 图书馆管理系统(c++入门级源码)9
- sift算法的C源码(网上唯一原创版本不
- 心电信号检测算法.rar
- c++ 文件目录管理与显示(源码+设计文
- booktool(x86汇编语言-从实模式到保护
-
MFC嵌入CEF(ja
vasc ript 调用 C++ 函数 - C++实战源码-AVI文件压缩工具
- C++实战源码-利用Direct Show进行视频捕
- C++实战源码-PSD文件向其他格式转换
- C++实战源码-幸运转盘
- C++实战源码-黑白棋
- C++实战源码-将Wave转换为MP3
- C++实战源码-网络五子棋
- C++实战源码-PSD文件浏览
- C++实战源码-利用Direct Show进行音频捕
- C++实战源码-批量添加水印
- C++实战源码-调用Office助手
- C++实战源码-将PNG转换为位图
- C++ 换肤程序
- C++ 关闭和打开显示器
- C++ 关闭输入法
- C++ 模拟鼠标单击按钮
- C++ 写入注册表项
- C++ 打开注册表根项
- C++ 快速设置注册表键值字符串数据
- C++ 隐藏桌面文件
评论
共有 条评论