• 大小: 1.09M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-24
  • 语言: C/C++
  • 标签: c++  读写  文件  

资源简介

本文档介绍了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

评论

共有 条评论