# Released under the MIT License. See LICENSE for details.#"""Math related functionality."""from__future__importannotationsfromcollectionsimportabcfromtypingimportTYPE_CHECKINGifTYPE_CHECKING:fromtypingimportSequencedefvec3validate(value:Sequence[float])->Sequence[float]:"""Ensure a value is valid for use as a Vec3. Raises a TypeError exception if not. Valid values include any type of sequence consisting of 3 numeric values. Returns the same value as passed in (but with a definite type so this can be used to disambiguate 'Any' types). Generally this should be used in 'if __debug__' or assert clauses to keep runtime overhead minimal. :meta private: """fromnumbersimportNumberifnotisinstance(value,abc.Sequence):raiseTypeError(f"Expected a sequence; got {type(value)}")iflen(value)!=3:raiseTypeError(f"Expected a length-3 sequence (got {len(value)})")ifnotall(isinstance(i,Number)foriinvalue):raiseTypeError(f"Non-numeric value passed for vec3: {value}")returnvaluedefis_point_in_box(pnt:Sequence[float],box:Sequence[float])->bool:"""Return whether a given point is within a given box. For use with standard def boxes (position|rotate|scale). :meta private: """return((abs(pnt[0]-box[0])<=box[6]*0.5)and(abs(pnt[1]-box[1])<=box[7]*0.5)and(abs(pnt[2]-box[2])<=box[8]*0.5))
[docs]defnormalized_color(color:Sequence[float])->tuple[float,...]:"""Scale a color so its largest value is 1.0; useful for coloring lights."""color_biased=tuple(max(c,0.01)forcincolor)# account for blackmult=1.0/max(color_biased)returntuple(c*multforcincolor_biased)
# Docs-generation hack; import some stuff that we likely only forward-declared# in our actual source code so that docs tools can find it.fromtypingimport(Coroutine,Any,Literal,Callable,Generator,Awaitable,Sequence,Self)importasynciofromconcurrent.futuresimportFuture