Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 25x 25x 25x 75x 25x 25x 25x | <template>
<div :style="styles"></div>
</template>
<script setup lang="ts">
import { computed } from 'vue';
import { rgbToHex } from '@/functions/colours';
import { DataOverlayMcad } from '@3cr/viewer-types-ts';
interface Props {
mcad: DataOverlayMcad;
size?: number;
}
const props = withDefaults(defineProps<Props>(), {
size: 12,
});
const color = computed(() => {
const { R, G, B } = props.mcad.Colour;
const toByte = (n: number) => n * 255;
return rgbToHex(toByte(R), toByte(G), toByte(B));
});
const styles = computed(() => {
return {
display: 'inline-block',
'background-color': color.value,
width: '8px',
height: '8px',
'border-radius': '50px',
};
});
</script>
|