You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thebookofshaders/glossary/lessThan/README-vi.md

1015 B

LessThan

Perform a component-wise less-than comparison of two vectors

Các phiên bản

bvec2 lessThan(vec2 x, vec2 y)  
bvec3 lessThan(vec3 x, vec3 y)    
bvec4 lessThan(vec4 x, vec4 y)  

bvec2 lessThan(ivec2 x, ivec2 y)  
bvec3 lessThan(ivec3 x, ivec3 y)  
bvec4 lessThan(ivec4 x, ivec4 y)

Các tham số

x specifies the first vector to be used in the comparison operation.

y specifies the second vector to be used in the comparison operation.

Mô tả

lessThan() returns a boolean vector in which each element i is computed as x[i] < y[i].

Tham khảo thêm

lessThanEqual(), greaterThan(), greaterThanEqual(), equal(), notEqual(), any(), all(), not()