各位,很多mod里的fmod是啥?上古卷轴5有用的mod吗

君,已阅读到文档的结尾了呢~~
fmod.dll fmod event.dll php fmod fmod函数 fmod下载 丢失fmod fmod warning fmod designer
扫扫二维码,随身浏览文档
手机或平板扫扫即可继续访问
举报该文档为侵权文档。
举报该文档含有违规或不良信息。
反馈该文档无法正常浏览。
举报该文档为重复文档。
推荐理由:
将文档分享至:
分享完整地址
文档地址:
粘贴到BBS或博客
flash地址:
支持嵌入FLASH地址的网站使用
html代码:
&embed src='/DocinViewer-4.swf' width='100%' height='600' type=application/x-shockwave-flash ALLOWFULLSCREEN='true' ALLOWSCRIPTACCESS='always'&&/embed&
450px*300px480px*400px650px*490px
支持嵌入HTML代码的网站使用
您的内容已经提交成功
您所提交的内容需要审核后才能发布,请您等待!
3秒自动关闭窗口fmod - C++ Reference
&cmath& &ctgmath&
double fmod (double numer, double denom);
double fmod
(double numer
, double denom);
float fmodf (float numer
, float denom);
long double fmodl (long double numer, long double denom);
double fmod (double numer
, double denom);
float fmod (float numer
, float denom);
long double fmod (long double numer, long double denom);
double fmod (double numer
, double denom);
float fmod (float numer
, float denom);
long double fmod (long double numer, long double denom);
double fmod (Type1 numer
, Type2 denom);
// additional overloads
Compute remainder of division
Returns the floating-point remainder of numer/denom (rounded towards zero):
fmod = numer - tquot * denom
Where tquot is the truncated (i.e., rounded towards zero) result of: numer/denom.
A similar function, , returns the same but with the quotient rounded to the nearest integer (instead of truncated).
provides a type-generic macro version of this function.
Additional overloads are provided in this header () for other combinations of
(Type1 and Type2): These overloads effectively cast its arguments to double before calculations, except if at least one of the arguments is of type long double (in which case both are casted to long double instead).
Parameters
Value of the quotient numerator.
Value of the quotient denominator.
Return Value
The remainder of dividing the arguments.
If denom is zero, the function may either return zero or cause a domain error (depending on the library implementation).
If a domain error occurs, the global variable
is set to .
If a domain error occurs:
set: the global variable
is set to .
is raised.
12345678910
/* fmod example */
#include &stdio.h&
/* printf */
#include &math.h&
/* fmod */
int main ()
printf ( "fmod of 5.3 / 2 is %f\n", fmod (5.3,2) );
printf ( "fmod of 18.5 / 4.2 is %f\n", fmod (18.5,4.2) );
fmod of 5.3 / 2 is 1.300000
fmod of 18.5 / 4.2 is 1.700000
Compute remainder (IEC 60559) (function
)Compute absolute value (function
)Break into fractional and integral parts (function
)
functions:
macro constants:Copyright &
(/) 办公资源交流中心
免责声明: 本网资源来源于互联网,本网转载出于传递更多信息和学习之目的,并不意味着赞同其观点或证实其内容的真实性
如转载稿涉及版权等问题,请联系我们及时删除以保证您的权利。对使用本网站信息和服务所引起的后果,本网不做任何承诺。FMOD声音引擎支持的文件类型
名称:FMOD声音引擎支持的文件类型
联系人:小旭游戏&
电话:010-&
地址:北京市朝阳区南湖南路15号金隅丽港城3号2203室&
产品介绍:
  FMOD目前支持很多音频文件格式。
-- DLS - (DownLoadable Sound format可作为midi回放,也可以单独使用。)
  -- M3U - (playlist,播放列表格式,记录了许多到其他音频文件的链接。使用FMOD EX的标记API获取文件。)
  -- ASX - (playlist,播放列表格式,记录了许多到其他音频文件的链接。使用FMOD EX的标记API获取文件。)
  -- WAX - (playlist,播放列表格式,记录了许多到其他音频文件的链接。使用FMOD EX的标记API获取文件。)
  -- PLS - (playlist,播放列表格式,记录了许多到其他音频文件的链接。使用FMOD EX的标记API获取文件。)
  -- AIFF - (Audio Interchange File Format)
  -- ASF - (Advanced Streaming format,同时也支持视频流中的音频轨迹。)
  -- FLAC - (Lossless compression codec,无损压缩编解码器)
  -- FSB - (用FSBank和FMOD设计工具生成的FMOD采样库:FMOD Sample Bank)
  -- IT - (Impulse tracker sequenced mod format. FMOD Ex also fully supports resonant filters in .IT files,and the per channel or per instrument echo effect send,that can be enabled in ModPlug Tracker. This is cross platform effect support and does not require DirectX like other libraries do.)
  -- MOD - (Protracker / Fasttracker and others sequenced mod format)
  -- MP2 - (MPEG I/Ⅱ Layer 2)
  -- MP3 - (MPEG I/Ⅱ Layer 3,including VBR support)
  -- OGG - (Ogg Vorbis format)
  -- RAW - (Raw file format support. 用户可以指定频道数量、bitdepth和所用格式等。)
  -- S3M - (ScreamTracker 3 sequenced mod format)
  -- WAV - (Microsoft Wave files,inlcluding compressed wavs. PCM,MP3 and IMA ADPCM compressed wav files are supported across all platforms in FMOD Ex,and other compression formats are supported via windows codecs on that platform).
  -- WMA - (Windows Media Audio format)
  -- XM - (FastTracker 2 sequenced format)
  -- VAG - (PS2 / PSP only)
  -- XMA - (Xbox 360 only)
  因为F mod支持新 文件格式的插件,所以可以认为Fmod能够支持的文件格式是无限的。注意,FMOD Ex不支持ACC,因为ACC所需的唯一引用文件是GPL,但FMOD Ex中没有GPL保护代码。为了支持这种格式,用户需要自行添加插件。
更多详情:FMOD声音引擎 .cn/sfx.htm
版权所有:

我要回帖

更多关于 饥荒有用mod 的文章

 

随机推荐