Posts

Showing posts from December 16, 2018

Fiale

Image
Äußere Fiale am Strebewerk der Kathedrale von Reims Fialen (von italienisch foglia , Blatt oder Nadel in der Pflanzenwelt) oder Pinakel sind aus Stein gemeißelte, schlanke, spitz auslaufende flankierende Türmchen, die in der gotischen Architektur der Überhöhung von Wimpergen und Strebepfeilern dienten. Neben dieser ästhetischen Funktion haben sie häufig auch eine statische, da sie die Konstruktion durch ihr Gewicht zusätzlich stabilisieren. Fialen bestehen meist aus einem vier- oder achteckigen Schaft bzw. Leib, der häufig eine aus Maßwerk bestehende Verzierung aufweist und im Mittelteil die Form eines Tabernakels hat. Über dem Schaft befindet sich die oft mit Krabben besetzte und mit einer Kreuzblume bekrönte, pyramidenförmige Spitze. Manchmal dienen sie auch als Träger von Bildsäulen. Fialen können auch außerhalb von Bauwerken kleinere Einzelstücke aus verschiedenen Materialien sein. Inhaltsverzeichnis 1 Fialen in der Spätgotik 2 Literaturhinweise 3 Weblinks 4 Einzelnachweise F

Rotate matrix without []

Image
up vote -2 down vote favorite I need to rotate a matrix and call the funcion without using , I can't even think on a solution. void _90DegClockwise(int *pS, int row, int col) for (int i = 0; i < row; ++i) for (int j = i + 1; j < col; j++) int temp; temp = (int)(pS); *((int*)((pS + i) + j)) = (int*)((pS + j) + i); (int*)((pS + j) + i) = temp; I don't know how to insert a value to matrix or how to swap c arrays pointers share | improve this question edited Nov 10 at 22:54 phuclv 14.3k 8 50 209 asked Nov 10 at 11:39 Itay Zemah 8 3 how is matrix rotation related to ? – phuclv Nov 10 at 12:39 I can't swap elements by using: a[i][j] = temp ,etc. – Itay Zemah Nov 10 at 12:46 add a comment  |  up vote -2 down vote favorite I need to rotate a matrix and call the funcion without using , I can't even think on a solution. void _90DegClockwise(int *pS, int row, int col