p function

Syntax

  • bool p(prob)

Parameters

  1. prob—float [range(0,1)]
    Probability for true, in [0, 1].

Returns

true or false, depending on prob and the current shape's seedian. if prob < 0, false is returned, and if prob > 1, true is returned.

Description

The p function returns true with probablity prob, or in other words, it returns false with probability (1 - prob).

Related

Examples

example.1
	p(0.5)
	# result = true with probability 0.5
	# result = false with probability 0.5
example.2
	p(0.3)
	# result = true with probability 0.3
	# result = false with probability 0.7
example.3
	p(1)
	# result = true
example.4
	p(0)
	# result = false
example.5
	p(2)
	# result = true
example.6
	p(-1)
	# result = false

In this topic