Miscellaneous Complexes
UTF Purification (num/string → string/num)
Swaps between a string of a single character and an integer representing that character.
Uses the UTF-16 character map.
This is the online version of the Complex Hex documentation.
This page is built from the latest code on GitHub. It may describe newer features that you may not necessarily have, even on the latest Modrinth/CurseForge version!
Entries which are blurred are spoilers. Click to reveal them, but be aware that they may spoil endgame progression. Alternatively, click here to get a version with all spoilers showing.
The past is a foreign country; they do things differently there.
A list of all the patterns I've discovered, as well as what they do.
This is a collection of transcripts from a (now defunct) "Mathematics Corps". I'm not sure what use these have, but I would like to know what the researchers were on whilst writing them.
Performs Addition, num will be treated as num + 0i.
Performs Subtraction, num will be treated as num + 0i.
Whilst normal numbers in the form of doubles are extremely useful in all sorts of cases, there come many times where they're just not precise enough.
To this end, longs are used. Despite their limitations (such as only storing integers, and a lower maximum value), longs are still useful due to this granularity, each bit of them can be manipulated freely without worry for imprecision.
Just like with normal numbers, Nature is not so generous as to make this easy for us.
(Details on next page)
Thankfully, what each angle does to the count is very similar to the norm, the only differences being:
a sharp left will shift the bits in the count to the left (effectively doubling them)
a sharp right will shift the bits in the count to the right (effectively halving them*)
* Due to a long's inability to contain a decimal, the value will always be rounded down.
This pattern pushes 43L: (10 + 10 + 1) * 2 + 1 = 43
Converts between doubles and longs
Always truncates the value when converting to long
Shifts all the bits to the right num times while preserving the sign
Pushes a Quaternion with num as the real coefficient and the vector's x, y, & z as the coefficients of i, j & k respectively.
Pushes the real coefficient and a vector where the x, y, & z components are the coefficients of i, j, & k respectively.
Performs Multiplication, Scalar if a num & quat are given, Hamiltonian if 2 quaternions are given.
Pushes a matrix that (should) represent the same rotation as the quaternion
Pushes a quaternion that (should) reperesent the same rotation as the matrix
Pushes a quaternion that reperesents a rotation by the given angle num radias around the given vector.
The spells catalogued here are purported to be of legendary difficulty and power. They seem to have been recorded only sparsely (for good reason, the texts claim). It's probably just the ramblings of extinct traditionalists, though -- a pattern's a pattern.
What could possibly go wrong?
These are patterns to manipulate Block, Item, and Text Displays (BITs for short).
Oddly, Scout's Distillation does not seem to work on these, thus I must depend on Entity Prfn. or Zone Dstn.
Summons a Block Display entity at the given position, displaying the given block. (The string must be the internal name i.e "minecraft:dirt", not "Dirt").
Costs about a Charged Amethyst
Summons an Item Display entity at the given position, displaying the given item (The string must be the internal name i.e "minecraft:stick", not "Stick").
Costs about a Charged Amethyst
Summons a Text Display entity at the given position, displaying the given string. Costs about a Charged Amethyst
Transform the position on the stack into the BIT at that location (or Null if there isn't one)
Take a position and a maximum distance on the stack, and combine them into a list of BIT's near the position.
Take a position and a maximum distance on the stack, and combine them into a list of non-BIT's near the position.