Mindblock在这里,但我不知道如何让它不那么难看:
def getClosestSphere(ray: Ray, spheres: List[Sphere]): Sphere = {
val map = new HashMap[Double, Sphere]
for (sphere <- spheres) {
val intersectPoint = sphere.intersectRay(ray)
map.put(intersectPoint, sphere)
}
map.minBy(_._1)._2
}
你能看到我在做什么吗?我有一个球体列表,其中每个球体都有一个方法intersectRay,返回一个double。
我想取这个函数的最小结果的Sphere。我知道有一个很好的函数结构可以让我在一行中做到这一点,我就是看不到:(
您可以执行以下操作:
def getClosestSphere(ray: Ray, spheres: List[Sphere]): Sphere = {
spheres.minBy(_ intersectRay ray)
}
顺便说一句:
使用可变集合时,请使用限定的导入。对于java.util.SomeCollection
,请先使用import java.{util => ju}
,然后使用名称ju.SomeCollection
。对于scala.collection.mutable.SomeCollection
,首先使用import collection.mutable
,然后使用名称mutable.SomeCollection
。
spheres.minBy(_.intersectRay(ray))