zoukankan
html css js c++ java
光线与球的求交代码
//
-------------------------------------------------------------------------
eiBool eiSphere::intersect(eiRay
*
ray, eiObject
*
po, eiFloat
&
oldt,
eiPrimitive
* &
ret_pri, eiFloat
*
cust_data,
HitParam
*
hparam)
{
if
( oldt
==
0.0f
||
ray_box( ray
->
src, hparam
->
hitPoint )
{
//
compute intersecting point
eiVector oc
=
add( ray
->
src,
-
center );
eiFloat oc_len
=
dist( oc );
if
( oc_len
>
radius
||
po
->
material
->
doubleSide )
{
eiFloat a
=
dot( ray
->
dir, ray
->
dir );
eiFloat b
=
2.0f
*
dot( oc, ray
->
dir);
eiFloat c
=
dot( oc, oc )
-
RR;
eiFloat dt
=
b
*
b
-
4.0f
*
a
*
c;
eiFloat t;
if
(a
==
0.0f
||
dt
<
0.0f
)
return
false
;
else
if
(dt
==
0.0f
)
{
t
=
-
b
/
a
*
0.5f
;
if
(t
<
0.0f
)
return
false
;
}
else
{
a
=
0.5f
/
a;
eiFloat t1
=
(
-
b
+
sqrtf( dt ))
*
a;
eiFloat t2
=
(
-
b
-
sqrtf( dt ))
*
a;
if
(t1
>
0.0f
&&
t2
<
0.0f
)
t
=
t1;
else
if
(t1
<
0.0f
&&
t2
>
0.0f
)
t
=
t2;
else
if
(t1
>
0.0f
&&
t2
>
0.0f
)
t
=
(t1
<
t2)
?
t1 : t2;
else
return
false
;
}
eiVector tmpIntersection
=
add(ray
->
src, mulvf(ray
->
dir,t));
//
affect shadow factor
if
(ray
->
type
==
RAY_SHADOW)
hparam
->
shadow_factor
*=
1.0f
-
po
->
material
->
opacity;
//
find nearest hit point
if
(oldt
==
0.0f
||
t
<
oldt)
{
hparam
->
hitPoint
=
tmpIntersection;
hparam
->
hitObj
=
po;
ret_pri
=
this
;
oldt
=
t;
//
fill custom data
return
true
;
}
}
}
return
false
;
}
查看全文
相关阅读:
查询oracle数据库里面所有的表名
mysql 触发器 trigger用法 four
mysql 触发器 trigger用法 three (稍微复杂的)
mysql 触发器 trigger用法 two (稍微复杂的)
腾讯云SSL证书+阿里云负载均衡实现https转https
关于redis WARNING overcommit_memory is set to 0 的问题解决
腾讯云申请免费ssl证书(1年有效期)
阿里云创建负载均衡
Go语言循环语句
Go语言条件语句
原文地址:https://www.cnblogs.com/len3d/p/202305.html
最新文章
202-如何事项mysql主从复制?
201-mysql数据库的表文件存放磁盘哪里?
200.User.class与user.getClass()方法的区别?或者说class是什么属性呢?
201-静态代码块与静态方法有什么区别?
欢迎页jsp
springboot 加载jsp 刷新jsp ,刷新Controller (亲自尝试)
【转】跨域资源共享 CORS 详解
archetypeCatalog=internal
favicon.ico设置
java获取当月日期 和 周末
热门文章
字符串反转
百度地图API功能
百度地图,删除marker,创建marker
100个线程同时向一个银行账户中存入1元钱
phpstudy composer 使用安装
phpstudy升级mysql版本到5.7 ,重启mysql不启动
配置mysql主从数据库
apache中的https设置基于阿里云免费ssl服务
MySQL分区(Partition)功能
MySQL索引类型总结和使用技巧
Copyright © 2011-2022 走看看